-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:] ERROR


UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]: unrecognized selector sent to instance 0x7257800'

 今天新建立一个TableView的时候,偶然发现这样的错误,因为用的是XCode自己生成的代码,好奇怪,想了想到底是为什么呢?

看了下Documents,oh shit!我用的Base 是5.0SDK.

Available in iOS 6.0 and later.

 遂改之:

UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM