iOS开发常用的第三方类库
}];
// 设置上拉加载更多
[self.tableView addInfiniteScrollingWithActionHandler:^{
[weakSelf insertRowAtBottom];
}];
}
- (void)viewDidAppear:(BOOL)animated {
[tableView triggerPullToRefresh];
}
- (void)insertRowAtTop {
// 获取数据....
// 停止动画
[self.tableView.pullToRefreshView stopAnimating];
}
- (void)insertRowAtBottom {
// 获取数据....
// 停止动画
[weakSelf.tableView.infiniteScrollingView stopAnimating];
}
评论