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];