翻訳はかなり簡単なので、swiftとobjective-cの両方で回答を受け入れます。
スプラッシュ スクリーン付きのタブ バーを表示したいのですが、そのスプラッシュ スクリーンをタブ バーの項目に表示して選択したくありません。
私のセットアップ (以下) では、タブ バーが表示されたときに最初に表示されるコントローラーとしてランディング スクリーンが表示されます。ただし、そのタブバーの項目を非表示にしたいです。ユーザーが選択できるのは、他の 3 つのタブのみです。どうすればいいですか?
//Create and add landing view
navigation = UINavigationController()
landingView = WGMLandingViewController(nibName: XIBFiles.LANDINGVIEW, bundle: nil)
navigation.pushViewController(landingView, animated: false)
navigation.title = "Landing View"
controllers.append(navigation)
//Create and add library view
navigation = UINavigationController()
libraryView = WGMLibraryViewController(nibName: XIBFiles.LIBRARYVIEW, bundle: nil)
navigation.pushViewController(libraryView, animated: false)
navigation.title = "Learn More"
controllers.append(navigation)
//Create and add pad view
navigation = UINavigationController()
orderPadView = WGMOrderPadViewController(nibName: XIBFiles.ORDERPADVIEW, bundle: nil)
navigation.pushViewController(orderPadView, animated: false)
navigation.title = "Order Pad"
controllers.append(navigation)
//Create and add lookup view
navigation = UINavigationController()
partLookupView = WGMLookupViewController(nibName: XIBFiles.LOOKUPVIEW, bundle: nil)
navigation.pushViewController(lookupView, animated: false)
navigation.title = "Lookup"
controllers.append(navigation)
//Set up controller list
self.setViewControllers(controllers, animated: false)