Это должно решить вашу проблему:

м проекте я получил предупреждение об устаревании, initWithFrame: reuseIdentifier: устарел

Я не знаю, что это значит, может кто-нибудь сказать мне, как решить это предупреждение, спасибо

вот краткий код

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

и предупреждение в этой строке:

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

Ответы на вопрос(4)

Ваш ответ на вопрос