AKSwiftSlideMenu
AKSwiftSlideMenu copied to clipboard
show menuVC on top of UITabbar
show menuVC on top of UITabbar, it shown below the UItabbar
got any solution?
@SwiftAmit I think the problem can be solved by changing the ownership of the menu. I am referring to the BaseViewController and this line:
self.view.addSubview(menuVC.view)
Try changing that to the top level window and take it from there:
let mainWindow = UIApplication.shared.keyWindow mainWindow?.addSubview(menuVC.view)
@igunther working fine