2012-04-16 116 views
0

我的代碼總是與'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和它調用這兩個功能的,但它沒有顯示藍色的「拉刷新」吧,它也不會加載後滾動起來。

+0

你居然將它添加到的tableView? – 2012-04-16 17:03:09

+0

@ Paul.s它是一個viewcontroller中的可用視圖! – Jones 2012-04-16 17:09:07

+0

我的意思是你真的把pullToRefreshView添加到tableView – 2012-04-16 17:11:13

回答

0

爲什麼不轉向已經編碼,穩定且衆所周知的外部代碼? 看看EGOTableViewPullRefresh

它可能會解決您的問題。

+0

我使用它但它不起作用,請檢查我的第一條消息。 – Jones 2012-04-16 16:04:12