这是我的TabBarViewController.i想要在完成FundTransferViewController的动作转移后返回SourceTableViewController。有什么帮助吗?
答案 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.
希望这会对你有所帮助。