の未解決の識別子table view
とprototype cell
を「cell」に設定してthe main storyboard
を設定しました。テーブルビューはdata source outlet
とdelegate outlet
です。
11行目にテーブルビューを作成すると、「未解決の識別子」のためにビルドが毎回クラッシュします(下記のコードを参照)。TableViewCell私のXcodeプロジェクトでセルを作成するときに、
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource
{
let array = createArray()
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return(validDeck.count)
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
cell = UITableViewCell(style: UITableViewStyle.default, reuseIdentifier: "cell") |"ERROR: Unknown Identifier 'cell' "
cell.textlabel?.text = ""
return cell
}
誰もがこのエラーを知り、助けてくれるのですか?
ためのコードの下に使用することは、それはありません、return' 'の後に括弧を使用しないでください。例えば関数'return validDeck.count' – vadian