我已经通过代码实现使用此iOS Library添加了侧边菜单。在视图中编写的代码下面加载了func:
let menuRightNavigationController = UISideMenuNavigationController(rootViewController: SideMenuViewController())
SideMenuManager.default.menuRightNavigationController = menuRightNavigationController
SideMenuManager.default.menuFadeStatusBar = false
在按钮动作中写下的一个:
present(SideMenuManager.default.menuRightNavigationController!, animated: true, completion: nil)
结果屏幕截图如下:
答案 0 :(得分:0)
如果您使用代码添加了SideMenu的RootViewController内的TableViewController,则可以在tableView.backgroundColor = .white
函数处提供viewDidLoad
。可能你是在没有任何配置的情况下初始化SideMenu。
默认TableViewController显示黑色背景。