Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have about 5 UIScrollView's already in my app which all load multiple .xib files. We now want to use a UIRefreshControl. They are built to be used with UITableViewControllers (per UIRefreshControl class reference). I do not want to re-do how all 5 UIScrollView work. I have already tried to use the UIRefreshControl in my UIScrollView's, and it works as expected except for a few things.

  1. Just after the refresh image turns into the loader, the UIScrollView jumps down about 10 pixels, which only does not happen when I am very careful to drag the UIScrollview down very slowly.

  2. When I scroll down and initiate the reload, then let go of the UIScrollView, the UIScrollView stays where I let it go. After it is finished reloading, the UIScrollView jumps up to the top with no animation.

Here is my code:

 -(void)viewDidLoad
 {
      UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
      [refreshControl addTarget:self action:@selector(handleRefresh:) forControlEvents:UIControlEventValueChanged];
      [myScrollView addSubview:refreshControl];
 }

 -(void)handleRefresh:(UIRefreshControl *)refresh {
      // Reload my data
      [refresh endRefreshing];
 }

Is there any way I can save a bunch of time and use a UIRefreshControl in a UIScrollView?

Thank You!!!

share|improve this question
+1 for discovering that you can even do this. But, I'm having trouble reproducing either symptom. I notice a completely different problem that the attributedTitle appears in the wrong place the first time I pull down to refresh unless I explicitly set the initial attributedTitle (e.g. to something like "Pull to refresh") when I first create the refresh control. So, a couple of questions: 1. Are you initializing the attributedTitle to anything during this initial creation? Also, 2. Are you using auto layout? 3. Are you doing anything else with any UIScrollViewDelegate methods? – Rob Feb 16 at 3:45

3 Answers

I got a UIRefreshControll to work with a UIScrollView:

-(void)viewDidLoad {
    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 500, 500)];
    scrollView.userInteractionEnabled = TRUE;
    scrollView.scrollEnabled = TRUE;
    scrollView.backgroundColor = [UIColor whiteColor];
    scrollView.contentSize = CGSizeMake(500, 1000);

    UIRefreshControl *refreshControll = [[UIRefreshControl alloc] init];
    [refreshControll addTarget:self action:@selector(testRefresh:) forControlEvents:UIControlEventValueChanged];
    [scrollView addSubview:refreshControll];

    [self.view addSubview:scrollView];
}

-(void)testRefresh:(UIRefreshControl *)refreshControl {    
refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"Refreshing data..."];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    [NSThread sleepForTimeInterval:3];

    dispatch_async(dispatch_get_main_queue(), ^{
        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
        [formatter setDateFormat:@"MMM d, h:mm a"];
        NSString *lastUpdate = [NSString stringWithFormat:@"Last updated on %@", [formatter stringFromDate:[NSDate date]]];

        refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:lastUpdate];

        [refreshControl endRefreshing];

        NSLog(@"refresh end");
    });
});

}

Need to do the data update on a separate thread or it will lock up the main thread (which the UI uses to update the UI). So while the main thread is busy updating the data, the UI is also locked up or frozen and you never see the smooth animations or spinner.

EDIT: ok, I'm doing the same thing as OP and i've now added some text to it (ie, "Pull to Refresh") and it does need to get back onto the main thread to update that text.

Updated answer.

share|improve this answer
You'll probably want to put your endRefreshing in a main queue block though, since it's a UI method. – Scott Feb 21 at 19:20
I thought so as well and my first post included retrieving the main thread, but this doesn't cause any errors or crashes. – Log139 Feb 21 at 20:11

Here is how you do this in C# / Monotouch. I cant find any samples for C# anywhere, so here it is.. Thanks Log139!

public override void ViewDidLoad ()
{
    //Create a scrollview object
    UIScrollView MainScrollView = new UIScrollView(new RectangleF (0, 0, 500, 600)); 

    //set the content size bigger so that it will bounce
    MainScrollView.ContentSize = new SizeF(500,650);

    UIRefreshControl refresh = new UIRefreshControl();
    refresh.AddTarget(RefreshEventHandler,UIControlEvent.ValueChanged);
    MainScrollView.AddSubview (refresh);
}

private void RefreshEventHandler (object obj, EventArgs args)
{
System.Threading.ThreadPool.QueueUserWorkItem ((callback) => {  
    InvokeOnMainThread (delegate() {
    System.Threading.Thread.Sleep (3000);             
            refresh.EndRefreshing ();
    });
});
}
share|improve this answer

You can simply create an instance of the refresh control and add it at the top of the scroll view. then, in the delegate methods you can adjust it's behaviour.

share|improve this answer
If you read my question, that is what I did. Do you do it a different way? – KKendall Feb 20 at 20:58

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.