I am trying to deploy from scratch something like BasicMenu example.
Steps are already done:
ECSlidingViewControllercreated in storyboard with proper User Defined Runtime Attributes and set as init view.MenuViewontrollercreated with identifier:MenuViewand unwind methodHomeScreenViewControllercreated with identifier:HomeScreenand rooted byUINavigationController- Created sliding segue from first cell in
MenuViewController.tableViewtoUINavigationControllerofHomeScreen - In
HomeScreenViewControllercreatedUIBarButtonItemwith 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.