Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting this error in iOS 5

-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]: unrecognized selector sent to instance 0xa217200

However, I get no errors in iOS 6. How can I fix this problem? Thanks..

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"MyCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; /// SIGABRT error

    if (!cell)
    {
        cell = [[UITableViewCell alloc]
        initWithStyle: UITableViewCellStyleSubtitle
        reuseIdentifier: CellIdentifier];
    }

    return cell;
}
share|improve this question
Need your tableView delegate methods pasted here. – OhhMee Aug 18 '12 at 6:14
provide sufficient code to get answer – NSS Aug 18 '12 at 6:19
added some code – user968173 Aug 18 '12 at 6:19

2 Answers

up vote 100 down vote accepted

I am not sure whether iOS 6 is supporting this method: - EDIT: This method is newly added in iOS6 SDK. So till now. Only iOS 6 and 6.1 suport this.

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

But in iOS 5, to create instance of UITableViewCell we generally use this method :-

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

In iOS 5, there is no need of extra parameter which you have used in iOS 6. (forIndexPath:).

So try it. It should work.

share|improve this answer
2  
worked well.. thanks a lot.. – user968173 Aug 18 '12 at 6:33
23  
Thanks Apple for making the default template code for a UITableViewController use an iOS6-only method without telling us! – Ben Clayton Nov 19 '12 at 18:04

Here's why you're getting the error. As per the iOS 6.0 Documentation Set the UITableView Class Reference states that dequeueReusableCellWithIdentifier: is available in iOS 2.0 and later and dequeueReusableCellWithIdentifier:forIndexPath: is available in iOS 6.0 and later.

share|improve this answer

protected by Community Oct 23 '12 at 0:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.