I have navigation container with A, B views in it.
When A first entry stack, I am able to roll the view because I set the scrollview widget in A view. When I roll to the bottom of A view, B view instance will be created and entry the stack (by navigate push).
But there is a problem when I popview to A view, the scrollview is unable to move.
I have tried much, such as:
viewWillAppear {
self.scrollView.delegate=self;
self.scrollView.scrollEnabled=YES;
[self.view addSubview:self.scrollView];
}
I know only this method will be called when popview from B view.