我在 xib 文件中设计了一个 3.5 大小的视图。当我以 iphone 5 分辨率运行时,它会在底部显示一个空格。
有没有办法支持一个 xib 进入两种分辨率。
谢谢。
编辑
if( IS_IPHONE_5 )
{
_helpButton = [[UIButton alloc] initWithFrame:self.view.bounds];
_LogoImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
[_helpButton setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
[_LogoImage setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
CGRect frameRect = _helpButton.frame;
frameRect.origin.y += 300;
_helpButton.frame = frameRect;
}