如何在操作后返回Tabbar视图控制器特定视图索引

时间:2013-12-17 06:03:57

标签: ios objective-c storyboard uitabbarcontroller tabbar

enter image description here

这是我的TabBarViewController.i想要在完成FundTransferViewController的动作转移后返回SourceTableViewController。有什么帮助吗?

3 个答案:

答案 0 :(得分:1)

使用此:

[tabBarControllerObj setSelectedIndex:1]; //Change index value as per ur need

答案 1 :(得分:1)

如果您想在另一个标签中完成操作后转到另一个标签页,这将有所帮助:

[self.tabbarcontroller setSelectedIndex:no of your index];

所以如果tabbar中的SourceTableViewController索引号是2,而不是

[self.tabbarcontroller setSelectedIndex:2];

FundTransferViewController课程中的转移操作中调用此方法。

答案 2 :(得分:0)

请试试这个:

 [tabBar setSelectedViewController:[[tabBar viewControllers] objectAtIndex:index]];// where index is the index of view controller where you want to switch back.

希望这会对你有所帮助。