EDIT : This method has recently been added to the iOS6 + SDK.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
But in iOS 5, we usually use this method to create an instance of UITableViewCell : -
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
In iOS 5, there is no need for an additional parameter that you used in iOS 6. (forIndexPath :).
So change your method. He will work.
Nayan Aug 18 '12 at 6:26 2012-08-18 06:26
source share