我有UITableview
分页,首先会从服务器获取20个对象并填入UITableView
然后当它到达最后一行时需要进行另一个服务调用以获取下一个20个对象。
我的问题是我需要在表格的底部添加活动指示器并且应该说"正在加载",用户可以向上滚动以查看当前对象但不应向下滚动。
有自定义控件吗? 有没有最好的方法来实现它?。
提前致谢。
答案 0 :(得分:27)
让我们试试TableView页脚视图来显示活动指示器。
例如:
在.h文件中声明UIView * footerView;
在.m文件中添加以下方法
- (void)viewDidLoad
{
[super viewDidLoad];
[self initFooterView];
}
-(void)initFooterView
{
footerView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 40.0)];
UIActivityIndicatorView * actInd = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
actInd.tag = 10;
actInd.frame = CGRectMake(150.0, 5.0, 20.0, 20.0);
actInd.hidesWhenStopped = YES;
[footerView addSubview:actInd];
actInd = nil;
}
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
BOOL endOfTable = (scrollView.contentOffset.y >= ((self.contentArray.count * 40) - scrollView.frame.size.height)); // Here 40 is row height
if (self.hasMoreData && endOfTable && !self.isLoading && !scrollView.dragging && !scrollView.decelerating)
{
self.tableView.tableFooterView = footerView;
[(UIActivityIndicatorView *)[footerView viewWithTag:10] startAnimating];
}
}
谢谢!
答案 1 :(得分:2)
查看这个开源项目。可以帮助你...