tabarへの遷移がうまく行きません
やりたいこととしてはViewControllerTabBarControllerへ画面遷移してTabBar毎にクラスを持たせたいです。
画面は画面遷移時にtabbarは表示されますが、画面がtabしか見えません
ViewControllerのボタン遷移コード
"let storybord=UIStoryboard(name: ""Main"", bundle: nil)
let TabBarController=storybord.instantiateViewController(withIdentifier: ""TabBarController"") as! UITabBarController
let ViewController=TabBarController.viewControllers?[0] as! Tab1 TabBarController.selectedViewController=ViewController TabBarController.modalTransitionStyle = .crossDissolve TabBarController.modalPresentationStyle = .fullScreen self.present(TabBarController, animated: true, completion: nil)"
設定
viewcontrollerのclass名:ViewController
TabBarControllerのwithIdentifier: "TabBarController
tab1のclass名:Tab1
tab2のclass名:Tab2
足りない情報があれば追記します。
回答1件
あなたの回答
tips
プレビュー