当我按下其中一个单元格时,我正在尝试更改另一个viewcontroller的标签

时间:2015-11-09 15:49:25

标签: ios uitableview swift2.1

以下是代码:

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。我需要UITableViewDataSourceUITableViewDelegate吗?

0 个答案:

没有答案