1

在我支持所有设备方向的 iPad 应用程序中,我将 adBannerView 添加到主视图。

到目前为止,一切都很好。它有效并且广告按预期旋转。

如果我点击一个特定的广告,它会全屏显示,当我关闭它时,我会回到我的应用程序。

问题是,如果您在可视化全屏广告时旋转设备,它会正确旋转,但是当您关闭它并返回应用程序时,视图不会旋转

如何解决这个问题?请帮忙,否则我会毁了我的 iPad!;-)

4

1 回答 1

0

基本上,你想要

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

方法被再次调用...

为此,当用户关闭 iAd 时,只需执行:

UIViewController *correctOrientation = [[UIViewController alloc]init];
[self presentModalViewController:correctOrientation animated:NO];
[self dismissModalViewControllerAnimated:NO];
于 2012-06-08T18:44:39.090 回答