Simple UITableView in Swift - unexpectedly found nil

后端 未结 13 1624
旧巷少年郎
旧巷少年郎 2020-12-06 00:38

Pretty simple code:

func numberOfSectionsInTableView(tableView: UITableView?) -> Int {
    return 1
}

func tableView(tableView:UITableView!, numberOfRows         


        
13条回答
  •  孤城傲影
    2020-12-06 01:27

    In my case it was the way the Optional is unwrapped:

    let cellId:String = "ConverterTableCell"
    let cell: ConverterTableViewCell = (tableView.dequeueReusableCellWithIdentifier(cellId)! as? ConverterTableViewCell)!
    

提交回复
热议问题