To cause my tableView to scroll up when i'm pressing the status bar, I'm defining my table view as:
myTableView.scrollsToTop = YES;
and other views as:
otherTableView.scrollsToTop = NO;
The thing is i have screens that involve many scrollable views and this solution won't work for this specific screens..... in addition i want to make some views to disappear when pressing on the status bar, and i wonder if there's a way to handle this kind of events?
Thanx in Advance