[iOS]'cell.text' is unavailable: APIs deprecated as of iOS 7 and earlier are unavailable in Swift
コード:
エラー内容:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
// Cellの.を取得する.
let cell = tableView.dequeueReusableCellWithIdentifier("MyCell", forIndexPath: indexPath) as UITableViewCell
// Cellに値を設定する.
cell.text = "\(myItems[indexPath.row])"
return cell
}
エラー内容:
'cell.text' is unavailable: APIs deprecated as of iOS 7 and earlier are unavailable in Swift
0
iQi - 面白いアプリを開発中
「cell.text」はiOS8以降、使えなくなぅったので、「cell.textLabel.text」を使ってください。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
// Cellの.を取得する.
let cell = tableView.dequeueReusableCellWithIdentifier("MyCell", forIndexPath: indexPath) as UITableViewCell
// Cellに値を設定する.
cell.textLabel?.text = "\(myItems[indexPath.row])"
return cell
}