GADBannerView以横向模式显示,但不在纵向模式下显示

时间:2010-11-22 10:12:36

标签: xcode iphone-sdk-3.2

当iphone处于横向模式或纵向模式时,如何自动更改GADBannerView的大小。

iAd以横向模式显示,但不以纵向模式显示。

1 个答案:

答案 0 :(得分:0)

你必须使用CGRectMake方法。

代码ex:

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

if (orientation == UIDeviceOrientation Portrait) {

banner.frame = CGRectMake (0,0,768,70)

}

else {

banner.frame = CGRectMake (0,0,1024,70)

}