実行中のデバイスに応じてアプリケーションに別のストーリーボードをロードしようとしています。今、私はデバイスを検出し、それに基づいてAppDelegateのrootViewControllerを設定することができました。しかし、私がこれをすると、私のTab Bar Controllerが消えることに気づいた。私は単にrootViewControllerを新しいインスタンスとして設定しているので、これが起こっていると思います。タブバーが表示されるようにこの問題を解決するにはどうすればよいですか?複数のストーリーボードをタブバーコントローラで使用する
AppDelegate.swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
window = UIWindow(frame: UIScreen.mainScreen().bounds)
window?.makeKeyAndVisible()
if ((UIDevice.currentDevice().modelName == "iPhone 5") || (UIDevice.currentDevice().modelName == "iPhone 5c") || (UIDevice.currentDevice().modelName == "iPhone 5s") || (UIDevice.currentDevice().modelName == "iPhone SE") || (UIDevice.currentDevice().modelName == "iPod Touch 5") || (UIDevice.currentDevice().modelName == "iPod Touch 6")) {
storyboard = UIStoryboard(name: "iPhoneSE", bundle: nil)
let rootController = storyboard!.instantiateViewControllerWithIdentifier("login5")
if let window = self.window {
window.rootViewController = rootController
}
print("-----------------------iPhone5-----------------------")
} else if ((UIDevice.currentDevice().modelName == "iPhone 6") || (UIDevice.currentDevice().modelName == "iPhone 6s")){
storyboard = UIStoryboard(name: "iPhone6", bundle: nil)
let rootController = storyboard!.instantiateViewControllerWithIdentifier("login6")
if let window = self.window {
window.rootViewController = rootController
}
print("-----------------------iPhone6-----------------------")
}
なぜ別のストーリーボードがあるのですか?それはあなたがやるべきことすべてに逆らっていますか?そして、それは縮尺通りではありません。 – rmaddy
私は制約を読み解くことをお勧めします...これは参考になるかもしれません:http://stackoverflow.com/documentation/ios/792/auto-layout#t=201608191742048675405 – Azer