每次滚动时,我都有一个带有单元格的表格视图出现致命错误:在展开可选值时意外发现 nil
它会将此代码标记为绿色:let button = cell.viewWithTag(1009) as! UIButton
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("ChecklistItem") as! UITableViewCell
let label = cell.viewWithTag(1000) as! UILabel
let button = cell.viewWithTag(1009) as! UIButton
button.tag = indexPath.row
...
}