iOS開發(fā)常用的第三方類庫
}];
// 設(shè)置上拉加載更多
[self.tableView addInfiniteScrollingWithActionHandler:^{
[weakSelf insertRowAtBottom];
}];
}
- (void)viewDidAppear:(BOOL)animated {
[tableView triggerPullToRefresh];
}
- (void)insertRowAtTop {
// 獲取數(shù)據(jù)....
// 停止動畫
[self.tableView.pullToRefreshView stopAnimating];
}
- (void)insertRowAtBottom {
// 獲取數(shù)據(jù)....
// 停止動畫
[weakSelf.tableView.infiniteScrollingView stopAnimating];
}
評論