uisplitviewcontroller

UISplitViewController landscape

How can I force my application to launch an UISplitViewController in landscape mode? ...

UISplitViewController shouldAutorotateToInterfaceOrientation

I'm using a UISplitViewController and when I launch the simulator, I get the following error: "The view controller returned NO from -shouldAutorotateToInterfaceOrientation: for all interface orientations. It should support at least one orientation." Any ideas on why I am getting this? (I am not subclassing the splitview controller). ...

Update splitViewController from ModalViewController

I need to update on of my splitView's from a modalView, but I am not having any luck. for instance: From my rootView (which is a UITableVIewController) if I set an option to hide a certain section from the rootView table in my ModalView, when I dismiss the modalview, the setting doesnt take affect on screen for the tableview, same goes ...

iPad UISplitViewController rotates unnecessarily when modal dialog is closed.

I have a reasonably simple split view application adapted from iPhone code. The main functionality is in shared classes with iPhone and iPad specific classes inheriting and augmenting the code. All the classes used in the iPad app have the following: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrie...

Frame width has strange behaviour

I want to add a footer view to my gouped table view for now i have this: NSLog(@"width:%f",self.view.frame.size.width); UILabel *lblInfo = [[UILabel alloc] initWithFrame:CGRectMake(50, 30,self.view.frame.size.width - 100, 70)]; lblInfo.text = @"Hellow"; [footerView addSubview:lblInfo]; [lblInfo release]; ...

how to change UIViewController to UISpliViewController

Hi All, let say the screen flow from a single view to splitview, how to change from UIViewController to UISplitViewController? i tried use a ViewController as switch controller, but after switch to SplitView, the SplitViewController unable detect Interface Orientation (landscape or portrait). thanks. and sorry for broken english. ...

UISplitview can't show full with UIInterfaceOrientation~ipad

I added <key>UIInterfaceOrientation~ipad</key> <string>UIInterfaceOrientationLandscapeRight</string> in Info.plist When I run the app, app can't show full. Why and how to make full to rightbar in UISplitview ? ...

numberOfRowsInSection called but not cellForRowAtIndexPath in MultipleDetailViews sample of apple

Hi, If you download this sample (ipad): http://developer.apple.com/library/ios/#samplecode/MultipleDetailViews/Introduction/Intro.html and you set a breakpoint at numberOfRowsInSection and also at cellForRowAtIndexPath and you start in landscape then i have the following question: First: the app comes twice in numberOfRowsInSection -> ...

UISplitViewController Barstyle changes when orientation changes

In my iPad app, I have the barStyle property set to UIBarStyleBlack by this code: // in viewDidLoad self.navigationController.toolbar.barStyle = UIBarStyleBlack; Strangely, when I rotate my iPad, the barStyle will sometimes reset to the gray / grey color. Any ideas on why this might be happening? ...