uisplitviewcontroller

What are the best practices for converting existing iPhone navigation systems into a Split View navigation?

I am trying to figure out how to best convert many of may apps to Split View apps for the new iPad. What are some of the best ways to go about this, minimizing the amount of transition code needed? Remember, the code is under NDA, but discussing generalities on the design architecture is not. ...

How to update a detailView in a splitViewController?

Hello, I'm trying to update a detailView in a splitViewController. This is what I try: //Get the application delegate AppDelegate *delegate = [[UIApplication sharedApplication] delegate]; //Get the masterViewController MasterViewController *master = [delegate.splitViewController.viewControllers objectAtIndex:0]; This seems to work f...

Does the UISplitViewController have to be the root controller of an iPad app?

Hey friends, According to Apple's documentation on the UISplitViewController (in the new iPad 3.2 SDK) it looks like they intend for you to use it only as a root controller of an app. In other words...it seams like you cannot push a UISplitViewController onto a UINavigationController because obviously the UINavigationController would n...

UIKeyBoard resize on orientation change to landscape

This is very rookie question. I have a UIToolBar at the bottom which is supposed to animatedly move up and down with key board when the UIKeyBoard is displayed. I got that working with the help of UIKeyBoard Notifications. The view we are talking about has split view enabled. When device orientation is landscape, both the views as column...

UISplitViewController in a TabBar ( UITabBarController )?

Hi all, 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 tabbarController. (Although tabbar object can be added to the splitviewcontroller). The problem can be seen otherways: I have a ...

UINavigationController as detail view of a UISplitViewController

Hi. I set up a navigation controller as detail view of a split view controller (NewFeedsNavigationController is inherited from UINavigationController). - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { masterViewController = [[MasterViewController alloc] initWithStyl...

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? ...

UISplitViewController: remove divider line

When using UISplitViewController on the iPad there's a black vertical divider line between the root and detail view. Is there any way to remove this line? Thanks ...

How can we change views in a UISplitViewController other than using the popover and selecting?

I have done a sample app with UISplitViewController studying the example they have provided. I have created three detailviews and have configured them to change by the default means. Either using the left/master view in landscape AND using the popover in the portrait orientation. Now I am trying to move to another view(previous/next) fr...

How do I add a search bar below the nav bar in a UISplitViewController?

How do I add a static search bar (one that doesn't scroll with the UITableView) below the UINavigationController in the root view of a UISplitViewController. The iPad mail app has an example of one of these. Actually I would Ike to add a toolbar with a segmented control instead of a search bar, but I imagine the process is the same. ...

iPhoneOS SDK - Remove Corner Rounding from views (iPad problem)

Hi Guys This might be a little bit picky, but in the iPad SplitViewController setup, there are 2 views. Each of the views has a very small black corner rounding. (This is probably the same with iPhone apps too). This rounding is visible in the image below. What I would like to do is remove the black rounding, so the UI doesnt get these ...

UISplitViewController change master and details view form details view

I have implemented UISSplitViewController with a master and detail view as per the documentation. I would like to select an item from the tableview (didSelectRowAtIndexPath) in the current details view, then switch the master view (rootviewController ) with the current detail view and switch in a new detail view. Is this possible ? ...

iPad SplitViewController with menu in portrait mode like settings app

Hi, 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 have a button at NavigationBar which includes a popover with my left menu. Thank you for your responses. ...

UISplitViewController and complex view heirarchy

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 app flow could be described roughly as this: Home screen (UIViewController) List->Detail "Catalog" (UISplitViewController) Super Detail Scre...

iPad SplitView changes main navigation bar color

Weird problem: After rotating my app to portrait, picking the toolbar item and exposing the uipopovercontroller, if I rotate back to landscape, the UINavigationController on the right side (objectAtIndex:0 of the SplitView) changes the color of the navigation bar. I am not sure why. I have it set in Interface Builder to be barStyle = U...

SplitViewController with differents NavigationController

Hi, I have an application with a splitviewcontroller in root. My menu at left and at right I have a embedded mini appication for each menu. In this mini application I had many level of navigation. A NavigationController in the content of SplitViewController represents my mini application with a tableview which permit to access the deta...

iPad SplitView Controller with different detailviewcontrollers based upon item selection?

What is the best way to support multiple detailed view controllers in an iPad SplitViewController? I want different detailViewController types to be displayed depending on which row is selected from the RootViewController. ...

iPad: Merge concept of SplitViewController and NavigationController in RootView?

I'm having trouble merging the two concepts of using a SplitViewController in my main view and having the "RootView" controller that controls the left panes popup/sidebar table view. I want to have the left "RootView" act as a navigation menu, but how do I do this when the RootView is tied through MainWindow.xib into the left pane of th...

Example of iPad SplitView where there is an .xib file specified for Root Controller?

Is it possible to specify a xib file for the RootController of an iPad's splitview? ...

How to make the landscape view look same as the portraitView while using a splitViewController?

What I meant is, When we use a UISplitViewController project In portrait mode, whole window will be covered by the view and a popoverController will be presented to navigate to other views. In landscape mode, 40% of the window will be covered by a tableView using which we can change the view/page. And navigation button as well as popov...