Hey!
I have a big problem and i don't know how I can solve this.
I wanna add the new features of ForceTouch to my App and it works perfectly, but there is one problem.
A short declaration of my app:
I have a TabbarController with five tabs, then I have five NavigationController and few ViewController.
Now i wanna "PopUp" a NavigationController with the shortcutAction. It works perfect, i can see the view but
the biggest problem is, i don't have the tabbar on this view and i don't know how can show the view with the
tabbar.
Here are the code:
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let viewController = storyboard.instantiateViewControllerWithIdentifier("imageViewController") as! UINavigationController
self.window?.rootViewController?.presentViewController(viewController, animated: true, completion: nil)
I hope someone can help me.
Thanks