Having an issue with a scroll view moving in UIViewController
I am having an issue with a scrollview when switching UIViewControllers
. When I navigate between UIViewControllers
the Scrollview
seems to adjust itself. How do I stop开发者_运维知识库 the scrollview
from moving?
You can use the scrollEnabled property to turn off scrolling when you want to switch controllers. [scrollView setScrollEnabled:NO];
精彩评论