0
は、私は、変数プレーヤーでエラーが発生しました、私は障害はあなたが最初のPlayer
タイプを定義する必要が使用「プレーヤー」
import UIKit
class PlayersViewController: UITableViewController {
var players:[Player] = playersData
// MARK: - Table view data source
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return players.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)
-> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("PlayerCell", forIndexPath: indexPath)
let player = players[indexPath.row] as Player
cell.textLabel?.text = player.name
cell.detailTextLabel?.text = player.game
return cell
}
}
あなたはまだプレーヤータイプを定義していません。 'Player'タイプとは何でしょうか? – pedrouan