The UISplitViewController class is a container view controller that manages the presentation of two side-by-side view controllers.
0
votes
1answer
48 views
Custom UISplitViewController
I would like to make UISplitViewController customized like on the image below. You can see that master is navigation controller.
Is this possible to do with UISplitViewController?
0
votes
1answer
42 views
Cannot remove a uiscrollview
I am working on an iPad app and i utilise a UISplitview for my program.
Now on the main detail view of my program i have a uiscrollview on which i add two labels.
UIScrollView ...
0
votes
0answers
11 views
Disable auto rotation for some views in iOS using SplitView controller
Its a known issue that rules for auto rotation changed in iOS 6. For other apps I've managed allowing autorotation for some specific views subclassing UINavigationController.
Now I'm trying to do ...
0
votes
1answer
32 views
Assigning Delegation for a splitViewController where the masterController is housed in a Container View
I need help programmatically traversing a storyboard hierarchy. This image should give some context: storyboard. The hierarchy consists of a splitViewController for which the master is a ...
0
votes
0answers
9 views
Change detailview on MGSplitViewController in a TabBar
I have a TabBar based app which i am currently using MGSplitViewController with.
I can load up the SplitView and it displays a tableview on the master, and shows a default kind of view in the detail ...
0
votes
3answers
25 views
Master View should hide/unhide on click on Menu Button on DetailView
I am using SplitView first time in iPad. I have implement the app by using default behavior of UISplitViewController.
But now i need to implement some different. Can we have same layout in portrait ...
0
votes
2answers
21 views
Popup button not visible when the splitview is in portrait orientation
I've added another Storyboard for the iPad to my app, trying to make my first universal app.
I'm starting up with a UISplitViewController where I have a menu on the left and the detail controller on ...
0
votes
0answers
53 views
MGSplitViewController port to iOS 6 using storyboard?
I'm trying to upgrade my App from iphone only to Universal. I've a critical requirement to be able to hide the master view and show only the detail (in landscape) for a significant part of the App.
...
0
votes
1answer
19 views
Universal app acting up on iPad iOS5
I've been working on a universal app. So far everything is good. During final testing it turns out that the app is not working with older OS (5.0 and 5.1). It initially showed a white blank screen. ...
0
votes
1answer
37 views
UISplitViewController => shouldHideViewController animation?
I'm trying to animate my MasterViewController when it appears/disappears. For hidding my master, i use shouldHideViewController in my UISplitViewController class.
...
-1
votes
1answer
32 views
how to update the uitablview of detailview on row select of master view or load new view in detailview?
am using xcode and developing one master detailview app for ipad
my requirement is there is two tablview ..one for masterviewcontroller and 2nd for detailview controller
and on select row of ...
0
votes
0answers
17 views
UISplitViewController does not recognize device rotation when covered by modal movie player
[This was posted on the Apple Developer Forums but has not been answered, so I'll try here.]
My application uses a UISplitViewController for iPad master/detail views and runs on iOS 6. The split view ...
0
votes
0answers
30 views
Refresh UISplitViewController after changing the Master's width
I am using iOS 6.0. From this post, I know I could use
[splitViewController setValue:[NSNumber numberWithFloat:10] forKey:@"_masterColumnWidth"];
To change the width of master view.(I do not need ...
0
votes
2answers
63 views
Push a string and display in a UITextField
I am doing a small app and I am using a UISplitVIewController and I am trying to push the UITable cell text to the detail view and display it in a UITextField. I have managed to push the string nicely ...
0
votes
0answers
24 views
How do I use a UIPageViewController in a UISplitViewController?
I am trying to use a UIPageViewController as the main view in a UISplitViewController, but it does not work properly with paging gestures. For instance, if I try to swipe to the next page, the next ...