por que obtenho "É necessário converter a máscara de redimensionamento automático em restrições para ter _setHostsLayoutEngine: YES" no xcode 6 beta

Eu tenho o código a seguir em um UITableViewController rápido, mas recebo uma exceção "É necessário converter a máscara de redimensionamento automático em restrições para ter a exceção _setHostsLayoutEngine: YES na segunda linha. )

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
}

O que estou fazendo errado?

questionAnswers(9)

yourAnswerToTheQuestion