You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to modally present another view within the right-hand-side (there is a reason it has to be modally presented rather than pushed onto the nav stack) it doesn't stay inside the bounds of the right hand side navController but takes over the whole iPad display, wiht the splitter vertical graphic cutting down through it. Also navigation back from the modally presented view screws up and then takes over the whole screen as well.
Is this a bug, or am I missing something, or is it an enhancement request? Is there a way to get it a viewController to load, using a "presentModalViewController" modal mechanism, only with the navController area the current view is within (on the right handside).
Code where splitView is setup (within @interface SimpleSplitController : APSplitViewController):
I'm stumped with this one as well. Knee deep in code atm but cant figure out why presenting a modal view in the detail section (right side) behaves weirdly as if starting from way inside the master side. Also dismissing the modal totally screws up the presenting view. The problem gets even worse in landscape mode :(
Anyone have any updates or fixes on this one? I'm guessing the presentation of the modal view wouldnt be on self but rather using the _split.detail navigation controller.... still its just a guess
When I try to modally present another view within the right-hand-side (there is a reason it has to be modally presented rather than pushed onto the nav stack) it doesn't stay inside the bounds of the right hand side navController but takes over the whole iPad display, wiht the splitter vertical graphic cutting down through it. Also navigation back from the modally presented view screws up and then takes over the whole screen as well.
Is this a bug, or am I missing something, or is it an enhancement request? Is there a way to get it a viewController to load, using a "presentModalViewController" modal mechanism, only with the navController area the current view is within (on the right handside).
Code where splitView is setup (within @interface SimpleSplitController : APSplitViewController):
- (void)viewDidLoad { [super viewDidLoad]; self.left = [[(UIViewController*)[AppointmentListController alloc] initWithNibName:@"AppointmentListController" bundle:nil] autorelease]; self.right = [[(UIViewController*)[WeekDetailsController alloc] initWithNibName:@"WeekDetailsController" bundle:nil] autorelease]; [self pushToMasterController:self.left]; [self pushToDetailController:self.right]; }
Code where issue occurs (within WeekDetailsController)
- (void)showModalView:(id)sender { testViewController *tc = [[[testViewController alloc] initWithNibName:@"testViewController" bundle:nil] autorelease]; [self presentModalViewController:tc animated:YES]; }
The text was updated successfully, but these errors were encountered: