initWithFrame: reuseIdentifier: está obsoleto

No meu projeto, recebi um aviso de reprovação, initWithFrame: reuseIdentifier: está obsoleto

Não sei o que significa, alguém poderia me dizer como resolver esse aviso, obrigado

aqui é o código curto

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }

    // Set up the cell...
    NSString *cellValue = [itemsList objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;

    return cell;
}

e o aviso está nessa linha:

cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];

questionAnswers(4)

yourAnswerToTheQuestion