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