我正在使用PFQueryTableViewController来显示来自PFObjects的数据,但是我想在没有要显示的对象时创建一个替代单元格。我尝试这样做但是当我在numberOfRowsInSection中返回1时,我收到以下错误: *由于未捕获的异常'NSRangeException'终止应用程序,原因:'* - [__ NSArrayM objectAtIndex:]:索引0超出空数组的边界'
我不知道该怎么做但是这里是我的代码:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if ([self.objects count] != 0){
// Return the number of rows in the section.
return [self.objects count];
}else{
return 1;
}
}
答案 0 :(得分:0)