I was wondering if anyone had had any luck triggering scrollsToTop (or by any other means) for a UITableView from the user tapping on the status bar when the UITableView is nested inside a UIScrollView that also observes this function? I know this probably isn’t good practice, but in this instance the UX kind of calls for this type of hierarchy.
Either way, I’ve seen a whole bunch of proposals ranging from private methods (obviously not going to happen) to adding fake windows over the status bar (also not going to happen).
Ok, so the answer here is two fold:
You cannot have more than one UIScrollView (or classes deriving from or using UIScrollView – i.e. UITableView) on the same UIView with the property scrollsToTop set to YES. Pick the one you want to have the feature and make sure all others are no
For example, do this:
Implement the UIScrollView delegate method
scrollViewShouldScrollToTop:andreturn YESif the calling UIScrollView is the UITableView.Props to this answer for mentioning the non-multiple
scrollsToTopoption.