gpt4 book ai didi

ios - 按下 TabBarItem 时执行操作

转载 作者:搜寻专家 更新时间:2023-11-01 07:11:44 24 4
gpt4 key购买 nike

如何在按下标签栏项目时向其添加 Action 。我已经尝试了一些东西,但要么它们不正确,要么我把它们放在了正确的位置。

在我的 Storyboard中,我有一个选项卡 View Controller ,它连接到一个导航 Controller ,当然它也连接到一个 ViewController。我试过使用

func tabBar(tabBar: UITabBar, didSelectItem item: UITabBarItem) {
//This method will be called when user changes tab.
}

我添加了 UITabBarDelegate,它仍然不起作用?有任何想法吗?谢谢!

最佳答案

您需要创建一个自定义选项卡 Controller 文件并将其作为自定义类分配给您的选项卡 Controller 。这是一个例子:

import UIKit

class CustomTabViewController: UITabBarController,UITabBarControllerDelegate {

override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) {
print("Selected item", item.tag )
}


func tabBarController(_ tabBarController: UITabBarController, didSelect viewController: UIViewController) {
print("Selected view controller", viewController)
print("index", tabBarController.selectedIndex )

}

}

关于ios - 按下 TabBarItem 时执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44531751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com