gpt4 book ai didi

iphone - 如何更改TabBarController索引和调用方法

转载 作者:行者123 更新时间:2023-12-03 20:46:40 26 4
gpt4 key购买 nike

我的 tabBar View Controller 中有一个 UIButton,我希望该按钮更改 tabBar selectedIndex 并调用该 selectedIndex 的 Controller 方法。

示例:我的按钮是 selectedIndex 3。当用户单击该按钮时,我想将 selectedIndex 更改为 0 并调用该 selectedIndex Controller 中的方法。

这可能吗?如果是这样,怎么办?

提前致谢!

最佳答案

以下是切换到不同选项卡的方法:

- (IBAction)buttonPressed:(id)sender 
{
self.tabBarController.selectedIndex = 0;

/* Running method declared in FirstViewController */

FirstViewController *firstView = [[FirstViewController alloc] init];

// call methods here
[firstView methodName];

[firstView release];
}

关于iphone - 如何更改TabBarController索引和调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5521002/

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