使用什么而不是initWithStyle:reuseIdentifier:

时间:2010-06-30 16:06:40

标签: iphone uitableview delegates

我已经看过Lynda iPhone教程,在有关Tableviews的课程中,有一种创建单元格的方法如下。

//create cell
UITableViewCell *cell = [[UITableView alloc]
                         initWithStyle:UITableViewCellStyleDefault
                         reuseIdentidier:@"cell"];

但是Xcode说没有这样的方法。以及显然没有代码意识捡起它。

可以用什么方法代替上述方法?谢谢/

此致

1 个答案:

答案 0 :(得分:1)

示例包含错误:

使用[[ UITableViewCell alloc] ...而不是[[ UITableView alloc] ...