如果我的tableView没有显示任何内容,我需要提醒用户有0个结果。我在我的willDisplayCell方法中执行此操作,但如果有0结果则不会注册。有谁知道如何修改这个?谢谢!
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows]
lastObject]).row) {
if ([self.listItems count] == 0) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Results" message:@"No
results found" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
}
}
}
答案 0 :(得分:2)
您可以在viewWillAppear
方法中显示警告,因为您的行数为0,因此您的willDisplayCell
方法未被调用,如果您仔细查看willDisplayCell
方法,则会找到参数{ {1}},这就是为什么它没有被调用,因为行数为零。
forRowAtIndexPath