以下是代码:
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let cell = tasksTable.cellForRowAtIndexPath(indexPath)!
string = cell.textLabel?.text
detail.TextLabel.text = string
}
我要更改的文字标签是detail.textLabel.text
。我在函数的第三行得到错误EXC_BAD_INSTRUCTION
。我需要UITableViewDataSource
或UITableViewDelegate
吗?