here is resume of my app:
- I have tab bar. When user tap on the tabbar item
- appropriate view controller is presented by "slide-to-side" animation (like in iP homescreen).
Code is in method tabBarController(tabBarController: UITabBarController, shouldSelectViewController viewController: UIViewController) -> Bool
.
- I have alert. When user tap on button, I want to direct him to the specific tab. But when I use
self.selectedIndex = #
, VC is showen, but without animation. Is there any way to achieve same action like tap on item? Thank you