我在Interface Builder中定义了UIView。
如果screenSize是568,我需要轻推它。
我无法弄清楚自动布局。我的屏幕有:
nudgeView iADbanner 的TabBar
我将我的IBOutlet设置为nudgeView,并认为我可以轻推它。 所以在我的viewDidLoad中,我想的是像
这样的东西if(iOSDeviceScreenSize.height == 568){
[nudgeView setFrameY: 40]; //no idea what this line should look like
}
应该只是将视图向下移动。
iAd和TabBar与底部对齐并做正确的事。
关于如何在nudgeView上更改Y的任何提示?
谢谢,
伊恩
答案 0 :(得分:1)
if(iOSDeviceScreenSize.height == 568){
CGRect frame = nudgeView.frame;
frame.origin.y = 40;
nudgeView.frame = frame;
}