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