iOS18適配指南之UITabBarController

介紹

  • 增加了新的標(biāo)簽類型UITabUITabGroup
  • 增加了類型為 UITabBarController.Mode 的mode屬性,用于設(shè)置顯示模式聊替,共有 3 種取值祥楣,分別為automatic开财、tabBartabSidebar汉柒。其中tabSidebar在 iPadOS 中可以實現(xiàn) siderBar 與 tabBar 的相互切換。
  • UITab可以設(shè)置title(標(biāo)題)责鳍、subtitle(副標(biāo)題)碾褂、image(圖片)、badgeValue(角標(biāo)值)等內(nèi)容历葛。
  • UITabGroup在 iPadOS 中可以實現(xiàn)標(biāo)簽的分組與折疊正塌。
  • UITabBarControllerDelegate 增加了多個與UITab相關(guān)的代理方法。

案例

代碼

  • 自定義 UITabBarController恤溶。
import UIKit

class TabBarController: UITabBarController {
    override func viewDidLoad() {
        super.viewDidLoad()

        delegate = self
        tabs.append(configTab(UIViewController(), title: "微信", imageName: "message", identifier: "wechat", badgeValue: "3"))
        tabs.append(configTab(UIViewController(), title: "通訊錄", imageName: "person.2", identifier: "contact"))
        tabs.append(configTab(UIViewController(), title: "發(fā)現(xiàn)", imageName: "safari", identifier: "discover"))
        tabs.append(configTab(UIViewController(), title: "我", imageName: "person", identifier: "me"))
        tabs.append(configTabGroup(UIViewController(), title: "更多", imageName: "ellipsis", identifier: "more"))
        // 選中的Tab
        selectedTab = tabs.last
    }

    // MARK: 設(shè)置Tab
    func configTab(_ viewController: UIViewController,
                   title: String,
                   imageName: String,
                   identifier: String,
                   badgeValue: String? = nil) -> UITab {
        // Tab
        let tab = UITab(title: title, image: UIImage(systemName: imageName), identifier: identifier) { tab in
            // 角標(biāo)
            tab.badgeValue = badgeValue
            // 關(guān)聯(lián)對象
            tab.userInfo = identifier
            viewController.view.backgroundColor = .init(red: .random(in: 0 ... 1), green: .random(in: 0 ... 1), blue: .random(in: 0 ... 1), alpha: 1.0)
            // 返回顯示的UIViewController
            return self.configViewController(viewController: viewController, title: title)
        }
        // Tab內(nèi)容的顯示方式
        tab.preferredPlacement = .sidebarOnly
        return tab
    }

    // MARK: 設(shè)置UITabGroup
    func configTabGroup(_ viewController: UIViewController,
                        title: String,
                        imageName: String,
                        identifier: String,
                        badgeValue: String? = nil) -> UITabGroup {
        // UITabGroup
        let tabGroup = UITabGroup(title: title, image: UIImage(systemName: imageName), identifier: identifier) { _ in
            viewController.view.backgroundColor = .init(red: .random(in: 0 ... 1), green: .random(in: 0 ... 1), blue: .random(in: 0 ... 1), alpha: 1.0)
            // 返回顯示的UIViewController
            return self.configViewController(viewController: viewController, title: title)
        }
        // 可以添加多個Tab乓诽,siderBar時肯定會顯示,tabBar時根據(jù)Tab的preferredPlacement取值決定
        tabGroup.children.append(configTab(UIViewController(), title: "設(shè)置", imageName: "gear", identifier: "setting"))
        tabGroup.children.append(configTab(UIViewController(), title: "關(guān)于", imageName: "info", identifier: "about"))
        return tabGroup
    }

    // MARK: 設(shè)置UIViewController
    func configViewController(viewController: UIViewController, title: String) -> UINavigationController {
        let navigationController = UINavigationController(rootViewController: viewController)
        viewController.navigationItem.title = title
        return navigationController
    }
}
  • UITabBarControllerDelegate咒程。
// MARK: - 新增代理方法
extension TabBarController: UITabBarControllerDelegate {
    // MARK: Tab是否可以選中
    func tabBarController(_ tabBarController: UITabBarController, shouldSelectTab tab: UITab) -> Bool {
        return true
    }

    // MARK: 選中Tab
    func tabBarController(_ tabBarController: UITabBarController, didSelectTab selectedTab: UITab, previousTab: UITab?) {
        print(previousTab?.title ?? "", selectedTab.title)
    }

    // MARK: 開始編輯
    func tabBarControllerWillBeginEditing(_ tabBarController: UITabBarController) {
        print(#function)
    }

    // MARK: 結(jié)束編輯
    func tabBarControllerDidEndEditing(_ tabBarController: UITabBarController) {
        print(#function)
    }

    // MARK: UITabGroup中的順序發(fā)生變化
    func tabBarController(_ tabBarController: UITabBarController, displayOrderDidChangeFor group: UITabGroup) {
        print(#function)
    }
}
  • SceneDelegate鸠天。
import UIKit

class SceneDelegate: UIResponder, UIWindowSceneDelegate {
    var window: UIWindow?

    func scene(_ scene: UIScene,
               willConnectTo session: UISceneSession,
               options connectionOptions: UIScene.ConnectionOptions) {
        guard let windowScene = (scene as? UIWindowScene) else { return }
        window = UIWindow(windowScene: windowScene)
        let tabBarController = TabBarController()
        // iOS18新增,設(shè)置顯示模式
        tabBarController.mode = .tabSidebar
        window?.rootViewController = tabBarController
        window?.makeKeyAndVisible()
    }
}
  • UIViewController帐姻。
import UIKit

class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

        // iOS18新增稠集,獲取sidebar
        let sidebar = tabBarController?.sidebar
    }
}

效果

UITabBarController.gif
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市饥瓷,隨后出現(xiàn)的幾起案子剥纷,更是在濱河造成了極大的恐慌,老刑警劉巖呢铆,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件晦鞋,死亡現(xiàn)場離奇詭異,居然都是意外死亡刺洒,警方通過查閱死者的電腦和手機(jī)鳖宾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來逆航,“玉大人鼎文,你說我怎么就攤上這事∫蚶” “怎么了拇惋?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長抹剩。 經(jīng)常有香客問我撑帖,道長,這世上最難降的妖魔是什么澳眷? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任胡嘿,我火速辦了婚禮,結(jié)果婚禮上钳踊,老公的妹妹穿的比我還像新娘衷敌。我一直安慰自己勿侯,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布缴罗。 她就那樣靜靜地躺著助琐,像睡著了一般。 火紅的嫁衣襯著肌膚如雪面氓。 梳的紋絲不亂的頭發(fā)上兵钮,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天,我揣著相機(jī)與錄音舌界,去河邊找鬼掘譬。 笑死,一個胖子當(dāng)著我的面吹牛呻拌,可吹牛的內(nèi)容都是我干的屁药。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼柏锄,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了复亏?” 一聲冷哼從身側(cè)響起趾娃,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎缔御,沒想到半個月后抬闷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡耕突,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年笤成,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片眷茁。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡炕泳,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出上祈,到底是詐尸還是另有隱情培遵,我是刑警寧澤,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布登刺,位于F島的核電站籽腕,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏纸俭。R本人自食惡果不足惜皇耗,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望揍很。 院中可真熱鬧郎楼,春花似錦万伤、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至傅寡,卻和暖如春放妈,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背荐操。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工芜抒, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人托启。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓宅倒,卻偏偏與公主長得像,于是被迫代替她去往敵國和親屯耸。 傳聞我的和親對象是個殘疾皇子拐迁,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內(nèi)容