我的代碼總是與'standerd'UITableview一起工作,但現在我在視圖控制器中植入了Tableview。我的代碼不工作(拉刷新)有誰知道爲什麼?拉動刷新
在一個普通的UITableview中它可以工作,但嗯,也許我錯過了一些stuf,因爲它是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和它調用這兩個功能的,但它沒有顯示藍色的「拉刷新」吧,它也不會加載後滾動起來。
你居然將它添加到的tableView? – 2012-04-16 17:03:09
@ Paul.s它是一個viewcontroller中的可用視圖! – Jones 2012-04-16 17:09:07
我的意思是你真的把pullToRefreshView添加到tableView – 2012-04-16 17:11:13