单击选项卡项时如何显示视图控制器。
我只想显示为弹出框。
使用情节提要
我找到了解决方案,但这不起作用
AddImage *yourViewController= (AddImage*) [self.tabBarController.viewControllers objectAtIndex:3];
CGFloat tabBarHeight = self.tabBarController.tabBar.bounds.size.height;
CGRect rect = CGRectMake(0, 0, tabBarHeight, tabBarHeight);
[AddImage presentPopoverFromRect:rect
inView:self.tabBarController.tabBar
permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];
最佳答案
以此目的
1)设置标签栏的代表
2)实现方法:-(void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item
3)现在显示特定项目的弹出框
关于ios - 当前 View Controller 在选择选项卡项上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29294241/