在 iPhone 中的 UItab 栏按钮上查找单击事件时出现问题

发布于 2024-10-17 19:33:33 字数 70 浏览 1 评论 0原文

我是 iPhone 开发新手,遇到一个问题,在 iPhone 中找不到 Tab Bar 按钮的单击事件。谁能告诉我如何找到它?

I'm new to iPhone development and I'm facing a problem where I can't find the click event of the Tab Bar button in iPhone. Can anyone tell me how to find it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Smile简单爱 2024-10-24 19:33:33

您还可以使用 tabbar 控制器的委托方法

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController

You can also use tabbar controller's delegate method

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController

一页 2024-10-24 19:33:33

首先将 Delegate 设置为您的 UIViewController,如下所示,

@interface MyRootViewController : UIViewController; {

然后在 @implementation 中确保您具有以下内容...

UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate = self;
tabBarController.viewControllers = [NSArray arrayWithObjects:myViewController1, myViewController12, myViewController4, myViewController5, nil];

祝您好运! :)

First set the Delegate to your UIViewController like this,

@interface MyRootViewController : UIViewController<UITabBarDelegate> {

and then in the @implementation make sure you have the following...

UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate = self;
tabBarController.viewControllers = [NSArray arrayWithObjects:myViewController1, myViewController12, myViewController4, myViewController5, nil];

Good Luck! :)

隐诗 2024-10-24 19:33:33

要监听 UITabBar 项目选择,您需要将 UIViewController 设置为 UITabBardelegate,然后实现此方法UITabBarDelegate

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item;

To listen for UITabBar item selection, you need to set your UIViewController as delegate of the UITabBar then implement this method of the UITabBarDelegate

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文