こんにちは私は私の風景のみのアプリを持っています。私はそれにiAdを追加しています、そして私はテストをクリックします私のアプリはこのエラーでクラッシュします
*** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and shouldAutorotate is returning YES'
私のアプリデリゲートで私は持っています
_bannerView.requiredContentSizeIdentifiers = [NSSet setWithObjects: ADBannerContentSizeIdentifierLandscape, nil];
そして私のVCで私は再び設定しています
[_bannerView setCurrentContentSizeIdentifier:ADBannerContentSizeIdentifierLandscape];
私のアプリを維持するためにLandspaceは私だけが持っています
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
ここで何が悪いのか提案してください。