How to achieve the following UI using swift. I tried so many ways. When I click on More, I need to show three options from the bottom of the current view controller.
Please suggest and provide ideas on how to achieve this.
Thanks in advance.
How to achieve the following UI using swift. I tried so many ways. When I click on More, I need to show three options from the bottom of the current view controller.
Please suggest and provide ideas on how to achieve this.
Thanks in advance.
You can implement delegate methods from UITabBarControllerDelegate:
func tabBarController(UITabBarController, shouldSelect: UIViewController) -> Bool
func tabBarController(UITabBarController, didSelect: UIViewController)
Then you can just add your view to the tab bar controller's view above the tab bar (with animation if you want to). Or you can add it immediately on load and toggle visible state.