gpt4 book ai didi

ios - 意外地在 swift 中发现 nil

转载 作者:行者123 更新时间:2023-11-28 11:22:17 25 4
gpt4 key购买 nike

我的 Controller 中有这样的代码:

var itemList:[String] = []

@IBOutlet var tasksTable:UITableView!

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return itemList.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
var cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "cell")

cell.textLabel.text = itemList[indexPath.row]

return cell
}

override func viewWillAppear(animated: Bool) {
tasksTable.reloadData() <-----------------------
}

为什么会出现此错误?

错误:在展开可选值时意外发现 nil

最佳答案

因为此时调用viewWillAppeartasksTable为nil。您可能忘记连接 Nib 上的 socket 。

关于ios - 意外地在 swift 中发现 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26681695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com