I have two viewController:
AController (UIScrollView is subview) and BController
- from AController I using presentModalViewController to BController . From BController i using dismissModalViewControllerAnimated to back to AController. But, i want set hidden for the UIScrollView from BController.
Please help me !
Thanks!
Use delegation, if you dont have so much expariance use in your AView viewWillAppear notification:
and in your BView use:
In result i will fire hideScrollView method in AView when you can hide your scrollView.