I am trying to deploy from scratch something like BasicMenu example.
Steps are already done:
ECSlidingViewController
created in storyboard with proper User Defined Runtime Attributes and set as init view.MenuViewontroller
created with identifier:MenuView
and unwind methodHomeScreenViewController
created with identifier:HomeScreen
and rooted byUINavigationController
- Created sliding segue from first cell in
MenuViewController.tableView
toUINavigationController
ofHomeScreen
- In
HomeScreenViewController
createdUIBarButtonItem
with action binded to Unwind method.
After starting app all looks like Ok, but when I am tapping Menu button in the NavBar nothing happens. Also unwind method of MenuViewController
not called.
P.S. I figured out that MenuViewController is not instantiated at runtime. No idea why =( P.P.S. I found the issue!!! It was very stupid mistake - i am not appointed class to ViewController in the Storyboard.
The issue was in appointment class to view controller in storyboard. It was by default UITableViewController instead MenuViewController.