Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently implemented pull to refresh here: https://github.com/leah/PullToRefresh. It kind of works however it gets stuck with a spinning activity indicator. Their is also no text to the right of the arrow. What am I doing wrong? Thanks!

share|improve this question
1  
What's your implementation? – BoltClock Feb 27 '11 at 13:55
Not much code. Just added the classes and quartz core. Then subclassed my table view controller Code: @interface RootViewController : PullRefreshTableViewController and added a void refresh – jsttn Feb 27 '11 at 18:53
4  
Try to do it with VoiceOver enabled and feel the pain VoiceOver-users feel when using apps with that terrible refreshing UI. – rightfold Jun 27 '11 at 20:49

4 Answers

up vote 21 down vote accepted

Without code there's not much anyone can say, but maybe try a different implementation of Pull To Refresh, like the enormego (EGO) version, the code is at github, here

It's used in the Facebook app so it definitely works.

share|improve this answer
how you know that it is used in facebook app. – Developer Jan 16 at 7:59

I am new to iOS development and I was trying to implement the pull to refresh in iOS 6. Well looking for a solution, I stumbled across this blog post and found it to be very helpful, http://www.intertech.com/Blog/Post/iOS-6-Pull-to-Refresh-(UIRefreshControl).aspx. It lays out the steps to implementing pull to refresh in a way that is easy to follow. Anyone looking to do this themselves in iOS 6 should check out the blog.

The UIRefreshControl is only useable with a Table View currently. There are a few steps to follow to successfully add a refresh control:

1. Create a callback method to handle your refresh logic. The callback method should be invoked when a user pulls down on the table view. The signarture of the method should take one parameter: a pointer to the UIRefreshControl.

Note: Steps 2-4 are all done within the Table View Controller’s viewDidLoad method.

2. Instantiate the UIRefreshControl with a basic "alloc/init".

3. Connect an action to the refresh control to invoke your callback method when the ValueChange event is fired.

4. Add the refresh control to the Table View Controller's "refreshControl" property.

share|improve this answer
1  
Could you add an excerpt of that page, so your answer will stay useful when the link dies? Also, we're more interested in the technical details (the actual answer), than in recommendations for blogs. – S.L. Barth Oct 18 '12 at 15:01

I prefer the EGO implementation than the leah one because it does not require a subclass of your view controller. The original EGO one in github is a bit of a mess with no .gitnore file and lots of .DS_Store files added unnecessarily. Take a look at some of the many forks and pick one.

The "emreberge" fork looks like a good version, better file organisation and documentation too!

https://github.com/emreberge/EGOTableViewPullRefresh

share|improve this answer

Apple has introduced UIRefreshControl in iOS6. You can integrate it in your UITableViewController using

- (void)viewDidLoad {
    [super viewDidLoad];
    // Initialize Refresh Control
    UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
    // Configure Refresh Control
    [refreshControl addTarget:self action:@selector(refresh:) forControlEvents:UIControlEventValueChanged];
    // Configure View Controller
    [self setRefreshControl:refreshControl];
}

the refresh: method will trigger the update and you can stop it in your API callback using:

 [(UIRefreshControl *)sender endRefreshing];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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