iAd横幅不会因设备方向而翻转

时间:2014-12-28 20:01:09

标签: ios ios-simulator orientation device iad

我的设备方向设置为纵向和上下颠倒。在设备和模拟器上,当我点击纵向中的广告横幅时,广告加载在肖像中。然而,当我将设备翻转过来时,应用程序颠倒翻转,但iAd没有并保持纵向状态。换句话说,颠倒的应用程序,iAd是不可见的倒置。如何使用倒置方向应用程序查看iAd翻页?

我使用以下内容使设备方向颠倒和纵向。但是我现在如何为iAd做这个呢?

 -(NSUInteger)supportedInterfaceOrientations {

return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);

}

我在故事板屏幕上添加了iAd,并附有以下代码......

 -(void)bannerViewDidLoadAd:(ADBannerView *)banner{

[UIView beginAnimations:nil context:nil];

[UIView setAnimationDuration:1];

[banner setAlpha:1];

[UIView commitAnimations];
 }

1 个答案:

答案 0 :(得分:0)

此时,您只能将iAd横幅的设备方向编程为纵向和横向。 iAd没有倒置的方向,我相信AdMob横幅是一样的。