UISplitViewController Full Screen For Detail View
I have a uisplitviewcontroller which loads a UIWebView as its detail view. I would like to allow the use to hide the RootViewController so that they can use the detail view controller in full screen.
The behavior is similar to that used by the Dropbox application. I'm not sure how to get this done. I've tried creating a new view controller and copy the webView, but there are issues whenever the user zooms the开发者_如何学C web view.
You can customize the default split view only to a certain level.. Here are some related questions from SO:
Hiding master view in split view app..???
Ipad Split view controller
but i think you've already read them.
I would suggest you to create your own custom controller as the default split view has very limited functionality. You can look at MGSplitViewController. It is a really good custom implementation similar to the UISplitViewController with much more flexibility.
精彩评论