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've got a UIPageViewController set up paging my ImageViewController.

The ImageViewController contains a UIScrollView with a UIImageView inside. Nothing else.

I'm testing at the moment with 3 "items" in my datasource for the UIPageViewController (i.e. three pages).

It all works fine and I can scroll and zoom and then page for about 30 seconds and then suddenly I get this warning...

*** Assertion failure in -[_UIQueuingScrollView _didScrollWithAnimation:force:], /SourceCache/UIKit/UIKit-2372/_UIQueuingScrollView.m:778

I've got no idea where to start debugging it though as it doesn't point to any of my code and there isn't any of my code in the stack or anything.

Can someone give me a pointer as to where to start debugging this.

EDIT

I've done a bit more testing. It seems to happen if the scrollView is decelerating (i.e. after a flick) and then I try to transition the PageViewController to another ViewController as the scrollview is still moving.

The app crashes about 20% of the way through the transition to the next page.

EDIT 2

The error seems to stop on the line _cache_getImp (not sure if that's a capital i or lowercase L).

EDIT 3

This gets better. I just downloaded Apple's PhotoScroller sample app to see if they got round the problem a different way. Well, no, they didn't. The sample app crashes in exactly the same way mine does! You have to zoom and scroll and transition pages at the same time to make it more likely to crash but it happens on it's own too it just might take longer to happen.

share|improve this question
I don't know the answer but the problem sounds like some I've seen where some delegate method is being invoked after the delegate object has gone away. Is there a delegate involved in your scrolling? – Phillip Mills Oct 16 '12 at 14:49
The only delegate method I'm using is viewForZoomingInScrollView. Is there a way to remove the delegate or deal with the fact it isn't there any more? – Fogmeister Oct 16 '12 at 14:50
1  
The bit in your question that made me think of this was "transition the PageViewController to another ViewController". When that is about to happen do you have an opportunity to set the scroll view delegate to nil? (Keeping in mind this is a wild guess at what the problem might be. :) ) – Phillip Mills Oct 16 '12 at 14:58
1  
Ah, I thought you had it there. There is a "willTransition..." method and I'm clearing the delegate on the ViewControllers scrollViews when I get into there but it didn't change it. – Fogmeister Oct 16 '12 at 15:05
I'm also having this problem. Did you get around it? Another related problem I'm having is that the scrollview displaying the imageview starts intercepting touches which means the page view controller won't recognize swipe gestures. Any ideas? – Remover Dec 3 '12 at 12:42
show 1 more comment

1 Answer

Have you tried disabling bouncing in the UIScrollView? That worked for me and solved my other problem too alluded to in my comment above.

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.