我有一个带有固定文字的UITableViewController
。我在每一行中添加了一些级别,因此它是静态的,因此我不会使用IBOutlet
创建UITableViewController
。当我尝试检索所选值时,我总是在nil
方法中获得override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
。
let currentCell = self.tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell!;
print(currentCell.textLabel?.text)
我需要建议。请帮帮我。