使用willDisplayCell注册tableView完成加载 - 不能使用0结果

时间:2013-03-05 07:38:50

标签: iphone ios objective-c xcode

如果我的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];
    }
}
}

1 个答案:

答案 0 :(得分:2)

您可以在viewWillAppear方法中显示警告,因为您的行数为0,因此您的willDisplayCell方法未被调用,如果您仔细查看willDisplayCell方法,则会找到参数{ {1}},这就是为什么它没有被调用,因为行数为零。

forRowAtIndexPath