dequeueReusableCellWithIdentifier-Fehler in meinem UITableView in iOS5

Ich erhalte diesen Fehler in iOS 5

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

In iOS 6 werden jedoch keine Fehler angezeigt. Wie kann ich dieses Problem beheben? Hier ist mein Code:

- (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;
}

Antworten auf die Frage(2)

Ihre Antwort auf die Frage