Swift UITabBarController 分頁控制器是 iOS 開發中常用的功能,它可以讓開發者將 App 的功能分頁,讓使用者更容易操作。本文將介紹如何使用 Swift 來建立 UITabBarController 分頁控制器,並且提供一些程式碼範例供參考。

UITabBarController 是一個可以讓開發者將 App 的功能分頁的控制器,它可以讓使用者更容易操作 App,而且可以讓開發者將 App 的功能更加清楚的展示出來。

要使用 UITabBarController,首先需要在 Storyboard 中建立 UITabBarController,然後將 UITabBarController 與其他 ViewController 連結起來,接著就可以在 AppDelegate 中設定 UITabBarController 的預設頁面,以及設定 UITabBarController 的標籤頁面,如下程式碼所示:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    let tabBarController = window?.rootViewController as! UITabBarController
    tabBarController.selectedIndex = 0
    tabBarController.viewControllers = [UIViewController(), UIViewController(), UIViewController()]
    tabBarController.tabBar.items?[0].title = "首頁"
    tabBarController.tabBar.items?[1].title = "設定"
    tabBarController.tabBar.items?[2].title = "關於"
    return true
}

在上面的程式碼中,我們可以看到,我們首先取得 UITabBarController,然後設定它的預設頁面,接著設定它的標籤頁面,最後設定每個標籤頁面的標題。

總結

本文介紹了如何使用 Swift 來建立 UITabBarController 分頁控制器,並且提供了一些程式碼範例供參考。UITabBarController 可以讓開發者將 App 的功能分頁,讓使用者更容易操作,也可以讓開發者將 App 的功能更加清楚的展示出來。

推薦閱讀文章

1. Raywenderlich – UIKit Tab Bar Controllers in iOS: Getting Started
2. AppCoda – An Introduction to UITabBarController in Swift
3. Hacking with Swift – How to create a tab bar controller and two tabs using storyboards
4. YouTube – Swift Tutorial: Create Your Own Tab Bar App
5. iOS Creator – Tab Bar Controller iOS Tutorial</a

延伸閱讀本站文章

更多swift相關文章

Swift UITabBarController分頁控制器 🗺️

Categorized in:

Tagged in:

,