The UISplitViewController class is a container view controller that manages the presentation of two side-by-side view controllers. You use this class to implement a master-detail interface, in which the left-side view controller presents a list of items and the right-side presents details of the ...
18
votes
7answers
25k views
UISplitViewController in a TabBar ( UITabBarController )?
I am in kind of situation that I need to start with a tab based application and in that I need a split view for one or more tabs. But it seems that split view controller object can not be added to the ...
15
votes
4answers
12k views
UISplitViewController programmtically without nib/xib
I usually create my projects without IB-stuff. The first thing I do is to strip off all references to xibs, outlets updated plist, etc and so forth. No problems, works great (in my world)!
Now, I ...
12
votes
3answers
528 views
SplitView detail view returns wrong view frame ?
I am using a splitView in iPad app. the detail view has 2 subView in it that draws themselves according to the etail view bounds.
the problem is that they always draw themselves in (1024, 768) even ...
11
votes
5answers
7k views
iPad SplitViewController with menu in portrait mode like settings app
I would like obtain a SplitView on my ipad application with my left menu in a portrait orientation such as iPad settings. For now in portrait orientation I have a content view in full screen and I ...
9
votes
2answers
1k views
Best way to switch between UISplitViewController and other view controllers?
I'm authoring an iPad app. One of the screens in the app is perfectly suited to using a UISplitViewController. However, the top level of the app is a main menu, which I don't want to use a ...
9
votes
3answers
5k views
Split view controller must be root view controller
Whenever I try to present a UISplitViewController modally the application crashes. Thus it must allways be the root view controller. Can anyone confirm that?
8
votes
4answers
2k views
IOS new Facebook iPhone App UISplitViewController Layout
another break away .net developer here now trying to get used to the world of IOS.
I like the layout of the new Facebook iPhone app (October 2011), and want to implement something similar in an app ...
8
votes
1answer
2k views
SplitView but on iPhone
I want to create an iPhone app that uses a navigation scene similar to the one pictured in the link
Please note I do not want this to only work for iPad, I want it to work for iPhone exactly as ...
7
votes
1answer
978 views
iOS5 breaks UISplitViewController rotation callbacks, how to invoke manually?
As has been reported in other questions here on SO, iOS 5 changes how rotation callbacks for split view controllers are sent as per this release note. This is not a dupe (I think), as I can't find ...
7
votes
3answers
4k views
UISplitviewcontroller not as a rootview controller
I am building my first iPad application. And one of my requirements is to deal with UISplitviewcontroller and UINavigationController.our proposed view hierarchy is (LoginView) ...
7
votes
1answer
6k views
How do I make a universal iPhone / iPad application that programmatically uses UISplitViewController and UINavigationController?
I couldn't find a good answer anywhere to this. I am using a UINavigationController for my iPhone app, with everything is generated programmatically, nothing in Interface Builder. I am trying to ...
7
votes
7answers
7k views
UISplitViewController and complex view hierarchy
I'm doing an iPad tech demo and I'm running into a serious technical problem.
I have an app concept that leverages UISplitViewController, but NOT as the primary controller for the entire app.
The ...
6
votes
1answer
171 views
UISplitViewController and orientation - iOS < 5.0
I am using a splitviewcontroller as the rootview of my application. I need to show the login and registration views as a modal view on top of the splitviewcontroller. When i try presenting login/reg ...
6
votes
7answers
18k views
Dismissing iPad UIPopoverController when BarButtonItem is pushed while it's open
Using a split view on the iPad, I have the following code:
- (void) splitViewController:(UISplitViewController *)svc willHideViewController:(UIViewController *)aViewController ...
5
votes
2answers
114 views
UIPopOverController inside UISplitViewController
I have to show one popOver inside the left side of one splitController, I initialize the popOver whit an navigationController. But when i show the popOver my app crash.
Impostazioni *settings = ...
5
votes
1answer
1k views
How to update DetailView using MasterDetail Application Template
I'm new to using the split view for creating iPad applications. When I first create the project just using the standard MasterDetail Application template (Xcode 4.2), it creates a ...
5
votes
2answers
2k views
UISplitViewController delegate methods not called
I am using a UISplitViewController inside a UITabBarController with a plain UIViewController in the master pane of the split view and a UINavigationController in the detail pane, which itself contains ...
5
votes
1answer
2k views
Can't use UISplitViewController in a universal app?
I'm having trouble getting UISplitViewController working in a Universal app where I've already coded the iPhone portion. As a troubleshooting method, I decided to start with a new project and just ...
5
votes
2answers
2k views
How to make a UISplitViewController in portrait mode?
I want to make a UISplitViewController in portrait mode just like in the Settings app. How can I do it?
5
votes
5answers
5k views
How to hide master view in UiSplitviewcontroller in ipad
Is there is any way to hide the master view in a splitviewcontroller programmatically. In my application the first screen will be of a splitviewcontroller, i don't need any split view for the next ...
4
votes
1answer
49 views
How to update a UITableView in detailview when changes the tabbar in the pop over controller?
I am creating an iPad app with splitview, here is the screen shot,
In this one, I want to update the values in the righthand side tableview, when I change the tab in the masterview controller (left ...
4
votes
2answers
662 views
How to hide & unhide Master View Controller in SplitView Controller
I have created a new split view based project in my XCode 4.2
Then in DetailViewController.m file i have add this method
- (BOOL)splitViewController: (UISplitViewController*)svc ...
4
votes
3answers
427 views
TabBarController and SplitViewController
i want my splitviewController to be displayed in within a TabBarController. Unfortunately, I firstly decided to just have a SplitViewController and chose apple's template. Now i am in the inconvenient ...
4
votes
1answer
448 views
UISplitViewController shrinks left side when rotating with Menu popover visible
I've never seen this happen before and I can't figure out what is causing it, maybe you can help. I have a UISplitViewController as my root view controller. The left side is a UINavigationController ...
4
votes
1answer
197 views
Mangled View Frame with Split View Controller
In my application which features a split view controller I have a loading view. My Root View Controller is a subclass of UITableViewController; while loading data I save self.view and transition it ...
4
votes
1answer
473 views
How do you add a UIToolbar to both views of the UISplitViewController?
And then have it merged in vertical view? Here is an example from the IMDB app.
http://img855.imageshack.us/img855/9669/imdb1.jpg
http://img39.imageshack.us/img39/5636/imdb2.jpg
They did it ...
4
votes
1answer
670 views
Missing UIBarButtonItem in the UISplitViewController
I've got missing navigationItem with popover in my right-hand view controller inside UISplitViewController. Simply the button do not appears when I'm rotating iPad to portrait orientation. The code is ...
4
votes
1answer
3k views
UISplitViewcontroller with master UINavigationController and detail UINavigationController
We have a certain behaviour we require in our UISplitViewController application. We have the following hierarchy of 3 views
FormOneViewController - TableViewController intialised in the MasterView
...
4
votes
1answer
3k views
Updating DetailViewController from RootController
I'm trying to create an iPad application with a similar user interface to Apple's Mail application, i.e:
RootView controller (table view) on the left hand side of the split view for navigation with ...
4
votes
3answers
771 views
How to make UIsplitview's popover visible in portrait mode iPad
I would like to make popover view visible whenever user switches from landscape view to portrait view in UIsplitView of iPad. Although user can make it visible by clicking on bar button but I want ...
4
votes
1answer
503 views
iPad Splitview template and modal views
I am trying to do a modal view inside the SplitView template.
I can make one, but if you turn the device or just press on the modal view, it dissapears behind everything.
How can I make a full ...
4
votes
2answers
2k views
UISplitView - load different detailView's for each row in masterView
I'm using UISplitViewController for app on iPad. The first task was to show master and detail view in portrait mode. I have done this like that:
// It is possible to keep the Master View in portrait ...
4
votes
1answer
340 views
Programmatically show root controller popup in portrait view
Is there any way to programatically show the root view controller in portrait mode responding to a user action?
in my app the root view controller can be updated responding to some user interaction ...
4
votes
3answers
2k views
How do I create a UISplitView manually?
I have an app that is going to navigate to a UISplitView (inside another view altogether) like so:
- (void) switchToMyDayView {
NSLog(@"Show My Day Screen");
if ...
3
votes
1answer
2k views
Need help understanding new Xcode 4.2 Master-Detail Application Template
I'm having some trouble understanding how all the "nuts and bolts" of the Master-Detail Application template works using Xcode 4.2 (without MainWindow.xib, as well as other changes). In "AppDelegate" ...
3
votes
1answer
179 views
Cannot make UIPopover appear programmatically
I want the pop-over to appear when the app is first launched in portrait mode instead of it being hidden and requiring the user to hit the button before the popover appears. I've tried to find ...
3
votes
1answer
282 views
SplitViewController Template show the popover manually?
I am using the splitViewController template provided by Apple. On a specific action, I want to show the rootViewController. Unfortunately, I cannot find a method that will show the popover ...
3
votes
3answers
198 views
How can I do an animated switch to UISplitView?
I have looked at the sample generated by xcode when creating a new UISplitView app on the iPad along with countless other tutorials and the documentation from the apple developer site. I have not seen ...
3
votes
1answer
1k views
iOS: How to dynamically change DetailView in SplitView template?
I've got a SplitView template project.
I want to change DetailView on user selecting item in RootViewController.
In fact I can't just change what's inside that view (DetailView) like it's done in the ...
3
votes
1answer
273 views
uitableviewcell setSelectedBackgroundView
i have app with splitviewcontroller , in master view of splitview i have uitableview and in detail view i have image gallery .which shows large image of the item selected in cell of uitable view of ...
3
votes
3answers
941 views
Problems with modal view launched over a split view controller
I have created a split view application that begins with a modal view splash page. The problem is that the modal view always launches in portrait mode, even if the ipad is in landscape. If I rotate ...
3
votes
1answer
431 views
UISplitViewController stops auto-rotating after trying to use the UINavigationController inside of it
I've been having a bit of trouble with a UISplitViewController in my iPad app. I am attempting to make a simple navigation tree using the UINavigationController inside of the UISplitView. I have used ...
3
votes
1answer
1k views
frame size of detail view of splitviewcontroller does not change up in ios4.2
I am implementing splitviewcontroller with two views master view and detail view in my ipad application. On changing the orientation of ipad from portrait to landscape I am need to hide the master ...
3
votes
0answers
316 views
iPad split view loaded as view not in main window
I need to load my split view in a xib not connected to the main xib, (it works for me if I create a split view connected to the main xib.)
uisplit tutorial (main with the root view controller, and ...
3
votes
3answers
344 views
detecting indexPath row and pushing a new view controller to a split view controller
I have a split view controller that has a table on the left hand side, and a empty detail view controller on the right had side. For iphone, I know its possible to push a view controller and a nib in ...
3
votes
3answers
323 views
in split view how to adjust the views to the screen when app launched in landscape mode
i am displaying master view and detail view in portrait mode of split view controller ,
i hav not used the pop up window to show master view as like most of hte ipad apps showing...
i am facing issue ...
3
votes
1answer
904 views
UISplitViewController with NavigationControllers (including sample code)
The easiest way to see this problem will be to run the sample project here:
http://drop.io/stackproblem
Basically, It's a uisplitviewcontroller which can be switched between 2 detail views, both of ...
3
votes
2answers
3k views
UIViewController and UISplitViewController in UITabBarController shouldAutorotateToInterfaceOrientation
i have some Problems with my iPad Code.
I have a UITabBarController which holds some UIViewController and a UISplitViewController. The problem is that the UIViewController and even the ...
3
votes
1answer
690 views
Application Terminates due to Popover
I am working on IPad application. As per requirement On detail page of SplitviewController I am adding one customized UIBarButtonItem leftbar button on navigation bar.
Now in Portrait mode when I ...
3
votes
4answers
6k views
Change the width of Master in UISplitViewController
The iPad programming guide says that the splitView's left pane is fixed to 320 points. But 320 pixels for my master view controller is too much. I would like to reduce it and give more space to detail ...