我的自定义单元格的执行时间为NSInvalidArgumentException
。
调试程序错误日志:
2014-12-25 21:39:11.397 Codebuddies[24159:11353215] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIImageView _isResizable]: unrecognized selector sent to instance 0x7fa5f580b6a0'
`
相关的swift代码块:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as FeedTableViewCell
我已经检查过的内容:
感谢您的帮助!
答案 0 :(得分:7)
感谢@MichaelDautermann我能够解决我的问题。
我在检查器视图中弃用了“引用对象”。我删除了它们,它现在按照希望工作。