views:

10

answers:

0

Hi,

I am creating a splitview application, but I want my app to start with a modalview present:

[window addSubview:splitViewController.view];
[splitViewController presentModalViewController:springboardViewController 
                                       animated:NO];

I want the modalview to autorotate but on springboardController.h this method is never called:

- (void)willAnimateSecondHalfOfRotationFromInterfaceOrientation: (UIInterfaceOrientation) fromInterfaceOrientation
                                                       duration: (NSTimeInterval) duration 
{

 [self animateButtons];

}

autorotation for the splitview controller works.

please assist!

thanks, Bill.

related questions