是否有任何工作拉动来刷新lib?
PullToRefresh-master不起作用
SVPullToRefresh-master有错误
ODRefreshControl-master - 不像我想要的
答案 0 :(得分:2)
有许多库可用,但我建议您使用UIRefreshControl。 Apple在iOS6中引入了UIRefreshControl。您可以使用
将它集成到UITableViewController中- (void)viewDidLoad {
[super viewDidLoad];
// Initialize Refresh Control
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
// Configure Refresh Control
[refreshControl addTarget:self action:@selector(refresh:) forControlEvents:UIControlEventValueChanged];
// Configure View Controller
[self setRefreshControl:refreshControl];
}
refresh:方法将触发更新,您可以使用以下命令在API回调中停止它:
[(UIRefreshControl *)sender endRefreshing];