当iphone处于横向模式或纵向模式时,如何自动更改GADBannerView的大小。
iAd以横向模式显示,但不以纵向模式显示。
答案 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)
}