Andrey Arzhannikov
Andrey Arzhannikov
Hi, @Dschee. Yes, as you mentioned `MenuViewController` is a `UIViewController` subclass and, unfortunately, there is no an ability to use `UITableViewController` at the moment. A simple solution is just to...
@Dschee Thanks for your feedback.
@Dschee Talking about `SideMenuItemContent`, currently, it's used to get access to `showSideMenu()` from item menu VC since the protocol has a default implementation. `MenuHelper` is a good idea that can...
Hi, @mosn. Thanks for this question! Actually, we didn't run into performance issue and large memory consumption. It would awesome to know details of your specific case. So, could you...
@mosn Yes, potentially we might have memory consumption issue if we have many menu items. The current implementation is not perfect in this case. A potential way to fix is...
Hi @jackdem, Currently, there is no public API to make this but you can change the behaviour by changing `UIGestureRecognizer` from `UIScreenEdgePanGestureRecognizer` to `UIPanGestureRecognizer` in source code [here](https://github.com/handsomecode/InteractiveSideMenu/blob/master/Sources/MenuContainerViewController.swift?utf8=%E2%9C%93#L101). Example: ```swift...
Hi, @Mahdimm We added this feature request to our todo list. Thanks for using the library.