2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Swift】コードでUITabBarControllerを実装する

Posted at

Storyboardを使わずに、コードのみでUITabBarControllerを実装する方法まとめ。

環境

  • Xcode12.4
  • Swift5

1. 各タブに表示するViewControllerを準備する

今回は、以下のファイルを新規作成する。
・FirstViewController
・SecondViewController
・ThirdViewController
・FourthViewController

タブを切り替えた際に、わかりやすいようにそれぞれの背景色だけ変更しておく。

FirstViewController
import UIKit

class FirstViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        view.backgroundColor = .red
    }
}

2. ViewControllerをUITabBarControllerに設定する

MainTabController
import UIKit

class MainTabController: UITabBarController {
     
    override func viewDidLoad() {
        super.viewDidLoad()
        
        configureViewControllers()
    }
    
    func configureViewControllers() {
        
        let first = FirstViewController()
        first.tabBarItem = UITabBarItem(title: "Home", image: UIImage(systemName: "house"), selectedImage: nil)
        
        let second = SecondViewController()
        second.tabBarItem = UITabBarItem(title: "Chat", image: UIImage(systemName: "message"), selectedImage: nil)
        
        let third = ThirdViewController()
        third.tabBarItem = UITabBarItem(title: "Book", image: UIImage(systemName: "book"), selectedImage: nil)
        
        let fourth = FourthViewController()
        fourth.tabBarItem = UITabBarItem(title: "Person", image: UIImage(systemName: "person"), selectedImage: nil)
        
        viewControllers = [first, second, third, fourth]
    }
}
Simulator Screen Shot - iPhone 12 Pro - 2021-05-01 at 15.59.50.png

Storyboardを使わない設定に変更する

最初はMain.storyboardが呼ばれるようになっているため、修正する。

  1. TARGETS > General > Development InfoのMain Interfaceを空白にする。
  2. Info.plistのInformation Property List > Application Scene Manifest > Scene Configuration > Application Session Role > Item 0 > Storyboard Nameの項目を削除する。
  3. Info.plistのInformation Property List > Main storyboard file base nameの項目を削除する。
  4. SceneDelegate.swiftを修正する。
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
        
        guard let scene = scene as? UIWindowScene else { return }
        window = UIWindow(windowScene: scene)
        window?.rootViewController = MainTabController()
        window?.makeKeyAndVisible()
    }
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?