I currently have a Web View within my MainViewController, which I allow users to swipe gesture left and right in order to go back and forth within their url history (swipe gestures call the 'goBack' and 'goForward' instance method of the UIWebView Class). Although functional, I would like to improve the user's experience by having the swipe gestures smoothly transition between old and recently viewed webViews/webSites (similar to the experience of transitioning between between pages in a Scroll View). However, I am not sure of the best way to proceed... Apple specifically placed this note on their UIWebView Class Reference Page:
Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.
How can I implementing this type of capability into my app and improve the app's user experience?
Thanks in advance!