を「タイプUITableViewCel.typeの不変式に代入することはできません」。このエラーを修正するにはどうすればよいですか?エラー:</p> <blockquote> <p>Cannot assign to immutable expression of type <code>UITableViewCel.type</code></p> </blockquote> <p>私はto-doリストアプリを作成しようとしている:私はエラーを取得しています
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
Error -> ** var cell = UITableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell**
if cell {
cell = UITableView(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
}
cell.textLable.text = "Hi"
return cell
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
}
私はちょうどそれらの2つのラインを切り替えると、それは動作しますか? – alexbomnd
@alexbomndはあなたのために働いたのですか? –