' NSInvalidArgumentException',原因:' - [UIImageView _isResizable]自定义tableview单元格异常

时间:2014-12-25 20:44:32

标签: uitableview swift

我的自定义单元格的执行时间为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

我已经检查过的内容:

  • 单元格的标识符设置为" Cell"

感谢您的帮助!

1 个答案:

答案 0 :(得分:7)

感谢@MichaelDautermann我能够解决我的问题。

我在检查器视图中弃用了“引用对象”。我删除了它们,它现在按照希望工作。