我發生了一件非常奇怪的事情。在我的應用程序委託中,我調用了presentModalViewController:在UITabBarController上顯示實現loadView以顯示圖像的自定義類(LoadingViewController)。當我在模擬器中對iOS 4.x設備(iPhone或iPad)進行測試時,它在任何方向都能正常工作。但是,當我測試3.2版iPad時,如果方向是縱向,它只能正常工作。如果是風景,則不會返回presentModalViewController:方法。 loadView和viewDidLoad方法被調用,但viewWillAppear:和viewDidAppear:方法不被調用。presentModalViewController:不返回
任何想法?
下面是LoadingViewController爲的loadView代碼:
- (void) loadView
{
CGRect mainScreenBounds = [UIScreen mainScreen].bounds;
UIImageView * loadingImageView = [[UIImageView alloc] initWithFrame: mainScreenBounds];
loadingImageView.autoresizesSubviews = YES;
loadingImageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
NSString * splashImageName = [self getSplashImageName: [UIDevice currentDevice].orientation];
loadingImageView.image = [UIImage imageNamed: splashImageName];
UIActivityIndicatorView * spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle: UIActivityIndicatorViewStyleWhiteLarge];
CGRect spinnerFrame = spinner.frame;
spinnerFrame.origin.x = (mainScreenBounds.size.width - spinnerFrame.size.width)/2;
spinnerFrame.origin.y = mainScreenBounds.size.height * 0.7f;
spinner.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin
| UIViewAutoresizingFlexibleRightMargin
| UIViewAutoresizingFlexibleTopMargin
| UIViewAutoresizingFlexibleBottomMargin;
spinner.frame = spinnerFrame;
spinner.hidesWhenStopped = YES;
[spinner startAnimating];
[loadingImageView addSubview: spinner];
// Add a label indicating we are working so the user knows what we are doing.
UIColor * textColor = [UIColor blueColor];
CGRect labelFrame = loadingImageView.frame;
labelFrame.size.height = 40;
labelFrame.origin.y = spinnerFrame.origin.y - 100;
UILabel * workingLabel = [[UILabel alloc] initWithFrame: labelFrame];
workingLabel.font = [UIFont systemFontOfSize: 18.0];
workingLabel.textColor = textColor;
workingLabel.backgroundColor = [UIColor clearColor];
workingLabel.textAlignment = UITextAlignmentCenter;
workingLabel.text = NSLocalizedString(@"Searching for location...", @"Searching for location...");
workingLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin
| UIViewAutoresizingFlexibleRightMargin
| UIViewAutoresizingFlexibleTopMargin
| UIViewAutoresizingFlexibleBottomMargin
| UIViewAutoresizingFlexibleWidth
| UIViewAutoresizingFlexibleHeight;
[loadingImageView addSubview: workingLabel];
[workingLabel release];
[spinner release];
self.view = loadingImageView;
[loadingImageView release];
}