ipad-splitview

Data updating in a UITableView that's the rootview of a SplitViewController

Hopefully I'll get some help here. Basic setup is this: My application swaps out the current Main View of the Main Window each time I want to switch to a new view. Why? Because I wanted to use a SplitView further on in the program (what's displayed in the SplitView depends on what's been selected before it). What happens is the appl...

Should UISplitViewController be the first view of a window?

I am going to have UISlitViewController in my application, but firstly, I will have a register view added into the window before the split view. But in Landscape orientation, after the register view being removed from the window and adding the view of split view controller, it can not be displayed properly. The size of the detail view on...

Using JQTouch inside Split View Controller

I have a split view controller-based iPad app that uses a Web View to load a jqTouch web app. In portrait mode it looks fine, but in landscape mode (regardless of which orientation the app was launched in), the jqTouch page is wider than the viewport. Is there a setting I can tweak (preferably via a call to stringByEvaluatingJavascri...

UITableViewController init method not called

I've created an iPad application with a UITableViewController in the UISplitViewController (and everything works :) Since I'd like the table to use UITableViewStyleGrouped, i added: - (id)init { self = [super initWithStyle:UITableViewStyleGrouped]; if (self != nil) { // Initialisation code } return self; } to ...

iPad SplitView crash at portrait but not landscape

Hi guys, I've got into a problem that when I'm using SplitView control in portrait mode and click the "Root Button" on the top left, the programs automatic close. There is nothing shown on debugging console. If I don't click on the "Root Button" and rotate device directly, I'll get a working RootView without crashing. The approach I us...

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

UISearchDisplayController Without Dimming?

Hi everyone. I am writing a SplitView iPad app. Inside the DetailViewController, there's a little view that contains a UITableView and a UISearchBar and its controller. This view does not represent the whole screen space reserved for the DetailViewController. Actually, it uses just half of it. There's an UIImageView on the other half. ...

wait_fences: failed to receive reply: 10004003

Dear all, i am trying to add splitview into my project code. I understand that most of the SplitView project have their splitview loaded on the main window. but i need to have other views before i come to the split view. That's the reason that i added split view to one of my view controller. i have successfully added my split view.. ...

UIViewController orientation problems in iPad

I am presenting MFMailComposeViewController as modal from a view controller (lets call it xyz) added to nav stack. When user clicks on cancel button, the MFMailComposeViewController is dismissed. This works fine when xyz is added to nav stack in portrait/landscape mode and the device orientation doesn't change until after cancel is click...

TabBarController within the RootViewController of a SplitViewController

Hi all ! I'd like to develop an iPad app which would be composed of a SplitViewController. I'd like to add a TabBarController in the RootViewController. I'm at the very beginning of the development. So I've started to simply create a new project, add a SplitViewController via Interface Builder and test the app, no problem of course. Th...

Dismissing iPad modal view messes up the UISplitView panels

The premise is remarkably simple: I want to display a modal view in an iPad app that uses a UISplitViewController. The view hierarchy is straight-forward: /- TableViewController1 /- root:TabBarController -- TableViewController2 SplitViewController - ...

How to add a login view before a UISplitViewController iPad

I would like to show a login view before a UISplitViewController in my app. I am not sure how to do that as Apple docs regarding iPad says that UISplitViewController should be a root view controller of the app. ...

viewWillAppear not getting called for detailView of UISplitViewController

Hi All, I am experimenting with the splitViewController, introduced for iPads and am stuck at a point. I have a button on my detail view of the splitViewController, clicking on which a modal view opens. Now I want to change the positoning of UI controls on the detail view when the modal view gets dissmissed. A pretty obvious way of doi...

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

Open source iPad applications

Are there any open source iPad applications ? Please help me by giving some sample ipad source code links , which will help to design good iPad applications.. ...

How to implement a Badge for a UIBarButtonItem ?

I want to pu a badge on the UIBarButtonItem that controls popover in a SplitView This code did do nothing: - (void)splitViewController: (UISplitViewController*)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem*)barButtonItem forPopoverController: (UIPopoverControll...

Can't add a UISplitView as a Tab Item in IB?

Is there a reason why I can't add a UISplitviewController as the child of a UITabBarController in Interface Builder? I realize I could do this programatically, but all of a sudden I'm questioning if this is a legit way to go. This is what I'm planning on doing: Create a Master View Controller (UITableViewController with accompanying ...

how to create split view application for Ipad

i am new to this iphone technology. i am working on iphone navigation controller.. i just want to know how to create a app for ipad and the application is of type split view controller... ...

Can I use a UINavigationController as the detail view of a UISplitViewController?

I'm running into a problem with an iPad app where I would like to have UINavigationControllers in both of the views within a UISplitView. I've looked through other similar questions here, but most link to a tutorial online that doesn't completely solve the problem. Here's a 2-minute walkthrough to re-create the problem I'm having: Cr...

How to drag image from SplitView controller to another SplitViewController in Ipad

How to drag image from SplitView controller to another SplitViewController in Ipad ...