我已经看过Lynda iPhone教程,在有关Tableviews的课程中,有一种创建单元格的方法如下。
//create cell
UITableViewCell *cell = [[UITableView alloc]
initWithStyle:UITableViewCellStyleDefault
reuseIdentidier:@"cell"];
但是Xcode说没有这样的方法。以及显然没有代码意识捡起它。
可以用什么方法代替上述方法?谢谢/
此致
答案 0 :(得分:1)
示例包含错误:
使用[[ UITableViewCell alloc] ...而不是[[ UITableView alloc] ...