-1
請在iPhone 4英寸和3.5英寸視網膜顯示屏中爲應用程序提供任何教程。無論我是通過xib還是通過編程來完成?在iPhone 4英寸和3.5英寸視網膜顯示屏中的應用教程
請在iPhone 4英寸和3.5英寸視網膜顯示屏中爲應用程序提供任何教程。無論我是通過xib還是通過編程來完成?在iPhone 4英寸和3.5英寸視網膜顯示屏中的應用教程
你可以在你這樣的廈門國際銀行文件中設置的自動調整大小爲您的觀點:
通過代碼:
// Define for know if it's an iPhone 5 or not
#define IS_IPHONE5() ((UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) && [UIScreen mainScreen].bounds.size.height == 568)
- (void)viewDidLoad
{
[super viewDidLoad];
// Set the view frame
self.view.frame = (IS_IPHONE5() ? CGRectMake(0, 0, 320, 568) : CGRectMake(0, 0, 320, 480));
}
教程是什麼?你想做什麼? –