You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example shows a UITableViewController being created in cade and passed to the ENSideMenu. I've tried to design this in storyboard with a custom cell class.
The table loads fine on it's own (make it first view controller as test) but when the SideMenuNavigationController is first VC, the app crashes with: "unable to dequeue a cell with identifier Cell....."
Am I missing something trivial or is a code-generated table the only way to use this?
The text was updated successfully, but these errors were encountered:
Worked it out, initialise with: sideMenu = ENSideMenu(sourceView: self.view, menuTableViewController: mainStoryboard.instantiateViewControllerWithIdentifier("Menu") as UITableViewController, menuPosition:.Left)
rather than: sideMenu = ENSideMenu(sourceView: self.view, menuTableViewController: MyMenuTableViewController(), menuPosition:.Left)
and give the VC the relevant identifier in the storyboard.
The example shows a UITableViewController being created in cade and passed to the ENSideMenu. I've tried to design this in storyboard with a custom cell class.
The table loads fine on it's own (make it first view controller as test) but when the SideMenuNavigationController is first VC, the app crashes with: "unable to dequeue a cell with identifier Cell....."
Am I missing something trivial or is a code-generated table the only way to use this?
The text was updated successfully, but these errors were encountered: