我在桌子下有一個UIView。 我必須設置UIView的高度爲iPhone 4S的或5 我嘗試使用根據屏幕大小設置UIView高度
- (void) regolaViewPeriPhone {
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 480)
{
CGRect frame = CGRectMake(0, 210, 320, 245);
_pickerContainerView.frame = frame;
}
if(result.height == 568)
{
CGRect frame = CGRectMake(0, 210, 320, 290);
_pickerContainerView.frame = frame;
}
}
}
,但它不工作,什麼是正確的方法是什麼?謝謝!
是regolaViewPeriPhone被稱爲? – Shaun 2013-03-01 04:44:19