Ipad SplitViewController navigating to another view
Posted
by nishantcm
on Stack Overflow
See other posts from Stack Overflow
or by nishantcm
Published on 2010-05-11T10:59:43Z
Indexed on
2010/05/11
11:04 UTC
Read the original article
Hit count: 313
Hi,
I am trying to navigate to a different view in the detailview of the splitviewcontroller. I dont want the new view to display in the split view.
I am using this code to change views. This works ok in portrait orientation, but in landscape the split view table view still appears. Can anyone help with this?
Next *any = [[Next alloc] initWithNibName:@"Next" bundle:nil];
[self.view addSubview:any.view];
© Stack Overflow or respective owner