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 a UIViewController with a UIScrollView in it. When running in the simulator, I drag the UIScrollView and it starts moving correctly, but when I release the drag, there's a small delay (around half a second) then the view continues moving to finish the momentum.

This delay only happens when the touch release happens in the view. So if I drag and release outside the simulator, there is no delay.

Here's the code for creating the UIScrollView:

scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
scrollView.pagingEnabled = YES;
scrollView.showsHorizontalScrollIndicator = NO;
//scrollView.delaysContentTouches = NO;
//scrollView.userInteractionEnabled = YES;
scrollView.delegate = self;
[self.view addSubview:scrollView];

// Add some sub views here
// ...

// 2 pages
scrollView.contentSize = CGSizeMake(self.view.frame.size.width*2, self.view.frame.size.height);
  • I have not overridden any touch events in the app.
  • I have not implemented any of the UIScrollViewDelegate methods.
  • Enabling and disabling paging doesn't make a difference.
  • I have not run this on a physical device, just in the simulator.

What's the problem?

Thanks.

share|improve this question
1  
I recommend trying it on a real iOS device first. The iOS Simulator is not 100% accurate and may have bugs that do not exist on a real device. – Björn Kaiser Jan 7 at 16:24
Unfortunately, I'm currently not a paid developer, so I can't run on a device. – Moe Salih Jan 7 at 18:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.