I have a bunch of scrolling views displayed by Navigationbar.PushViewController(...). When I show them these controls have their contentOffset set. The problem is that after tapping a back button in the navigationbar this offset is changed to Point 0,0 and after that it goes to the correct value. The setting to 0,0 causes my controls to load data while not required (offset was not changed by user). How can I avoid this 'temporary reset'of the offset?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Have you tried storing the contentOffset in a variable in ViewWillDisappear? Then resetting contentOffset in ViewDidAppear?

I think the contentOffset functionality you are experiencing is a feature (ha ha) of UIKit.

link|improve this answer
It happens still but your answer gave me an idea to modify my loading logic. I set the currentOffset into a local variable in ViewWillDisappear method and call loading only if the currentOffset is the same as the local variable value. It seems to work ok. Thanks for help. – Scarlaxx Mar 16 '11 at 9:36
feedback

Your Answer

 
or
required, but never shown

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