檢查一下
- 這個方法如果返回值為 0 或 nil 就不會執(zhí)行 cellForRowAtIndexPath 方法
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 0;
或
return nil;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell ····
return cell谈喳;
}