你的tableView
出口被误认为是一个UITableViewCell
而不是一个UITableView
.
@IBOutlet weak var tableView: UITableView!
BTW - 在各种数据源和委托方法中,使用tableView
参数而不是访问属性.
例:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCellWithIdentifier("todoCell") as! UITableViewCell return cell }