我有一个swift UITableViewController中的以下代码,但我得到一个“必须翻译自动调整掩码到约束中,在第二行有_setHostsLayoutEngine:YES异常我没有改变任何设置在界面生成器(所以Autolayout和大小类都检查)。
@H_404_1@override func tableView(tableView: UITableView!,cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell? {
let cell:TodoItemCell = tableView.dequeueReusableCellWithIdentifier("TodoItemCell",forIndexPath: indexPath) as TodoItemCell
let row = indexPath.row
cell.titleLabel.text = self.todoItems![row].title
self.callback!(row)
// Configure the cell...
return cell
}
我究竟做错了什么?