苹果自带的刷新控件UIRefreshControl(不推荐使用)

苹果自带的刷新控件UIRefreshControl(不推荐使用)
有bug,例:如果正在刷新,用tabbar切换控制器界面时会卡住

UIRefreshControl *control = [[UIRefreshControl alloc] init];
[control addTarget:self action:@selector(loadNewTopics) forControlEvents:UIControlEventValueChanged];
[control beginRefreshing];
[self.tableView addSubview:control];

你可能感兴趣的:(苹果自带的刷新控件UIRefreshControl(不推荐使用))