我有一个Swift应用程序,其中有一个PFQueryTableViewController
,我正在尝试在我的单元格中使用占位符图像。这是代码:
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!, object: PFObject!) -> PFTableViewCell! {
let cellIdentifier = "GroupCell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as PFTableViewCell
let uIImage = UIImage(named: "ios7-people 40x40")
cell.imageView.image = uIImage
return cell
}
这会产生错误:
fatal error: unexpectedly found nil while unwrapping an Optional value
在cell.imageView.image分配行。我在我的应用程序的其他部分测试了相同的UIImage,并且它按预期工作。此处显示了imageView的调试控制台的一小部分:https://copy.com/SATs4axVmrg9Rhay
我在这里做错了什么?我只想为所有单元格放置占位符图像。我没有在我的故事板BTW中明确地向单元格添加UIImageView。