How to change UITabBarController's modalTransitionStyle in iOS?
Я использовал UITabBarController
in my apps. Я хочу использовать modalTransitionStyle
за UITabBarController
,
I have three Views in UITabBarController
with following codes.
self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController1,viewController3,viewController2, nil];
And I changed like,
self.tabBarController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
But it's doesn't work. Как это изменить?
Благодарю.