I am using a plist file inorder to fill my table cells , now I added EGOTableViewPullRefresh API to update my cells , but I do not know how can I match my plist url file with this API

//this is my plist code that load from server 
     NSURL *url = [NSURL URLWithString:@"http://example.com/news.plist"];
     titles = [[NSArray arrayWithContentsOfURL:url] retain];

EDITED :

#pragma mark -
#pragma mark Data Source Loading / Reloading Methods

- (void)reloadTableViewDataSource{

    //  should be calling your tableviews data source model to reload
    //  put here just for demo
    _reloading = YES;
    [self.tableView reloadData];  

}

- (void)doneLoadingTableViewData{

    //  model should call this when its done loading
    _reloading = NO;
    [_refreshHeaderView egoRefreshScrollViewDataSourceDidFinishedLoading:self.tableView];

}


#pragma mark -
#pragma mark UIScrollViewDelegate Methods

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{ 

    [_refreshHeaderView egoRefreshScrollViewDidScroll:scrollView];

}

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{

    [_refreshHeaderView egoRefreshScrollViewDidEndDragging:scrollView];

}


#pragma mark -
#pragma mark EGORefreshTableHeaderDelegate Methods

- (void)egoRefreshTableHeaderDidTriggerRefresh:(EGORefreshTableHeaderView*)view{

    [self reloadTableViewDataSource];
    [self performSelector:@selector(doneLoadingTableViewData) withObject:nil afterDelay:3.0];

}

- (BOOL)egoRefreshTableHeaderDataSourceIsLoading:(EGORefreshTableHeaderView*)view{

    return _reloading; // should return if data source model is reloading

}

- (NSDate*)egoRefreshTableHeaderDataSourceLastUpdated:(EGORefreshTableHeaderView*)view{

    return [NSDate date]; // should return date data source was last changed

}
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
+50

You should just be able to call reloadDataand that will refresh your dataSource. This logic should be the same for a "pull to refresh" feature as well.

link|improve this answer
do you mean something like this ? [self.tableView reloadData]; in which function I should put this code ? see my edited Q – Mc.Lover Jun 18 '11 at 7:24
Yes. By the looks of it egoRefreshTableHeaderDidTriggerRefresh calls a method that already as reloadData. You gotta figure out if your controller is a UITableViewController, if so, then self.tableView should be correct. If you named your TableView, then you would need to reference it. – WrightsCS Jun 18 '11 at 7:31
I tried it but nothing happen , also this code : [self reloadTableViewDataSource]; consider that my table view data loads from server – Mc.Lover Jun 18 '11 at 7:45
I solve it thank you :) – Mc.Lover Jun 20 '11 at 12:12
How did you solve it. Could you share it please – Illep Jan 20 at 16:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.