它崩溃了
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
继承我的数据源的代码(默认情况下将包含视图控制器作为数据源)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"albumCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
cell.textLabel.text = @"display cell";
return cell;
}
和指向单元格打印屏幕的链接 http://img526.imageshack.us/img526/495/screenshot20121121at115.png
我在uitables上做了苹果示例应用程序并且它有效,我无法找到我在那里做的和我在这里做的之间的区别。试过调试了一百次。有人可以帮我解决我的代码问题吗?
编辑:删除了我注释掉的代码
编辑2:我删除了视图并再次放入它并且它有效,猜测我搞砸了偏好中的某些内容
答案 0 :(得分:0)
]objectForKey:@"name"];
这条线的用途是什么?你确定你粘贴了完整的代码吗?
同时检查.xib文件,在表视图中键入CellIdentifier字段值