uisplitviewcontroller

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 screen modal view ? I have tried every modal style but the modal view will never stick around. ...

UISplitViewController - Dealing with memory warnings

Hi, I'm using a UISplitViewController where when the Master VC is loaded (UITableViewController) and a table cell is pressed, it creates the Detail VC (UIViewController with two UIWebViews): @implementation MasterVC - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UIViewController *de...

UIsplitViewController not RootViewController

Hello, I want to show SplitViewController view. But I don't want my SplitViewController as the rootView Controller . I want UInavigationViewController as rootViewController and want to present SplitViewController view after first view. Is this possible ? ...

How can I replace a UIViewController with a UISplitView Controller?

Mine is a normal viewcontroller application. When I click a button on this mainView, it adds a 2nd view(a different xib) as a subview to the mainView. I want this 2nd view to be replaced by a splitview. So it means I should replace the 2nd view controller with a UISplitViewController, isnt it? Can I do that? Is it possible to add a spli...

UISplitViewController subclass in a universal app

I am building a universal app that uses a UISplitViewController for the iPad, and should work on any 3.0 device such as a 1st gen iPhone/iPod touch too. The trouble is that despite the fact that I am not actually creating any instances of UISplitViewController while the app is running on an iPhone, I still get the dreaded dyld: Symbol ...

How to give a custom view for the UIBarButtonItem that is shown on portrait mode for UISplitViewController?

When we go portrait mode while using a UISplitViewController, they will provide us by a barButtonItem. How can I use a customView for that barButtonItem? I tried the following way. It works if I start with portrait orientation. But if I go landscape and when I come back it crashes. In viewDidLoad UIImage *image = [UIImage imageNamed:...

Adding UISplitviewController to nib file of universal app, object not showing

So I've upgraded my iphone app to a universal app and am trying to add a uisplitviewcontroller. In MainWindow-ipad.xib, when I try to drag an object to the window, uisplitviewcontroller isn't an option. Furthermore, the screen size is the iphone's dimensions, not the ipad's. How do I get this to work with the universal app? Thanks. ...

Having a UINavigation in a UISplitView

So I was looking at this app http://itunes.apple.com/us/app/pageonce-personal-finance/id285056092?mt=8 (see iPad screenshots) and it appears that they have a uinavigation controller within the Details view of the UISplitView. When I tried to make a UINavigation controller in my Details View, the navigation bar overlaps with the UISplitVi...

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 try to do the one action that's causing a problem and it still is. If I create a Universal app and in the iPad controller create a split vie...

How to make a UITable to highlight its 5th row when we start the app?

I am using a splitviewcontroller. When I select something in the table the row is highlighted and it is shown in the detailed view. I have also provided an option to change the contents in the detailed view by scrolling. When I start I want the the 5th row to be highlighted by itself, how can I do it? ...

iOS iPad GUI deadlock on startup. Hung on splash screen.

My iPad app hangs on startup sometimes. It looks like the main thread is getting deadlocked with another thread but not sure why. Any ideas on what's causing this and how to debug this? FYI my app starts as a splitview controller with a listview on the left and a webview on the right. If I start in portrait mode with the list view hidd...

Moving a 'UITabBarController with UINavigationController' iPhone app to 'UITabBarController with UISplitView' on iPad

I have an app where the appDelegate has a UITabBarController. Each of the tabs has a navigation controller which I currently use to push a single detail view onto the stack in each tab. I am hoping to replace my navigation controller on each of the tabs with a splitViewController. I use the Interface builder to provide the UINavigatio...

Issue with response to cell selection in UISplitView

Hi, The app I'm currently working on has a split view on one of the views I push with my navController. In my root view I have the function that is called when a cell is selected. In there I call a function in my detail view that should create and add a button to the sub view. While debugging I follow the program all the way through the...

SplitViewController's popover UI error when UISearchBar is in focus.

When a splitview is in portrait mode, the rootView shows as a popover. in this case, my rootView has a tableView with a searchBar at the top. When I tapped the search bar, the keyboard appears, and the splitView's popover automatically adjust its height, but at the same time, I get this in the top of the popover.. Any ideas? Thanks in...

Migrating a tab bar-based iPhone project to iPad

Like many other developers out there, I've created iPhone projects that use a UITabBarController as the root controller, with the tab views using UINavigationControllers to drill down from lists to detail views. And like many other developers out there, I need to migrate these apps to the iPad so they take advantage of the bigger screen ...

iPad: Custom Toolbar for UISplitViewController

How exactly does one go about implementing a custom toolbar for the main table view section of a split view? The program I am writing for the iPad is landscape only so the split view has a static table view along the left side, and at the top is the toolbar with a title. It is this toolbar I would like to change. I have created the spl...

UISplitViewController's Master view loses state after rotation

On the iPad, I've noticed that apps like Mail and WebMD keep rows in the final level of the hierarchy of the "Master" (left) view highlighted when tapped. They also remember this state after rotation; if you select an e-mail in landscape and then rotate to portrait, and click the Inbox button to bring up the Master view popover, the corr...

Can a UISplitViewController be a tab within UITabViewController?

Can I UISplitViewController be a tab within a UITabViewController. I tried creating a new NIB with the Split View Controller configuration. And added the tab with UISplitViewController as the type to my mainwindow nib. I specified the NIB for the UISplitViewController. Nothing happened. Can I use IB to link the UISplitViewController de...

Can we forcefully make an orientation change in iphone or ipad through programming?

I will explain my problems in a few steps. Plz go through them and reply I have a mainView with 9 child view in it. Clicking on any of these child view it will goto a splitview replacing this whole mainview. SplitView consists of a tableview on left and a normal view on right. If I goto the splitview in portrait mode, everything works...

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 this to be automated for portrait mode. ...