[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];
原文地址:https://www.cnblogs.com/iosdev/p/2798857.html