Pretty simple code:
func numberOfSectionsInTableView(tableView: UITableView?) -> Int { return 1 } func tableView(tableView:UITableView!, numberOfRows
In my case it was the way the Optional is unwrapped:
let cellId:String = "ConverterTableCell" let cell: ConverterTableViewCell = (tableView.dequeueReusableCellWithIdentifier(cellId)! as? ConverterTableViewCell)!