我面临的问题是,我的 tableView 在我拉(刷新)它之后不会停止刷新。我正在使用Yalantis" Pull to Refresh"来自github的repo(在这里找到:https://github.com/Yalantis/Pull-to-Refresh.Rentals-iOS)并尝试将其实现到我现有的项目中。
我已经实现了头文件,添加了属性,但在说明中它有unfresh(如果你愿意)是一个链接到按钮的IBAction。显然不是我想要的。以下是我使用
的代码请记住,我已经采取了很多措施并保留了相关内容。任何帮助都会很棒。 THX。
- (void)viewDidLoad {
[super viewDidLoad];
[self setupRefreshControl];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.sunnyRefreshControl startRefreshing];
PFQuery *query (i perform query for table)
}
# pragma mark - YALSunyRefreshControl methods
-(void)setupRefreshControl{
self.sunnyRefreshControl = [YALSunnyRefreshControl attachToScrollView:self.tableView
target:self
refreshAction:@selector(sunnyControlDidStartAnimation)];
}
-(void)sunnyControlDidStartAnimation{
// start loading something
[self.tableView reloadData];
}
-(IBAction)endAnimationHandle{
[self.sunnyRefreshControl endRefreshing];
}
答案 0 :(得分:2)
实际上,您可以随时调用该方法
[self.sunnyRefreshControl endRefreshing];
按钮处理程序它只是示例^ _ ^
(IBAction)endAnimationHandle{ [self.sunnyRefreshControl endRefreshing]; }
如果您仍有疑问,可以在github repo上创建问题。谢谢