我的代码始终使用“标准”UITableview,但现在我在视图控制器中植入了 Tableview。我的代码不起作用(拉刷新)有人知道为什么吗?
在普通的 UITableview 中它可以工作,但是嗯,也许我错过了一些东西,因为它是 ViewController 中的 tableview。
我正在使用; https://github.com/enormego/EGOTableViewPullRefresh
- (void)reloadTableViewDataSource{
// should be calling your tableviews data source model to reload
// put here just for demo
_reloading = YES;
}
- (void)doneLoadingTableViewData{
// model should call this when its done loading
_reloading = NO;
[_refreshHeaderView egoRefreshScrollViewDataSourceDidFinishedLoading:self.tableView];
}
我使用了 NSlog,它同时调用了这两个函数,但它没有显示蓝色的“拉动刷新”栏,加载后也不会向上滚动。