程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-如何根據設備類型啟動特定的視圖

ios-如何根據設備類型啟動特定的視圖

編輯:編程綜合問答
如何根據設備類型啟動特定的視圖

在啟動時候有三個視圖,想要實現的是可以根據設備類型來選擇三個中的一個。目前我寫的代碼在AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // 應用啟動後重寫制定
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && [UIScreen mainScreen].bounds.size.height == 568.0) {
        self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_Portrait5" bundle:nil];
    }

    else if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && [UIScreen mainScreen].bounds.size.height == 480.0) {
        self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_Portrait4" bundle:nil];
    }

    else {
        self.viewController = [[ViewController alloc] initWithNibName:@"ViewController_PortraitPad" bundle:nil];
    }
}

但是運行之後,應用啟動的時候屏幕一片漆黑。
怎麼解決,謝謝。

最佳回答:


在方法的最後添加:

self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved