我在iOS应用程序中添加了侧面菜单,但菜单显示为黑色

时间:2018-06-18 12:46:17

标签: ios swift side-menu

我已经通过代码实现使用此iOS Library添加了侧边菜单。在视图中编写的代码下面加载了func:

let menuRightNavigationController = UISideMenuNavigationController(rootViewController: SideMenuViewController())

SideMenuManager.default.menuRightNavigationController = menuRightNavigationController
SideMenuManager.default.menuFadeStatusBar = false

在按钮动作中写下的一个:

present(SideMenuManager.default.menuRightNavigationController!, animated: true, completion: nil)

结果屏幕截图如下:

Click here for screenshot

1 个答案:

答案 0 :(得分:0)

如果您使用代码添加了SideMenu的RootViewController内的TableViewController,则可以在tableView.backgroundColor = .white函数处提供viewDidLoad。可能你是在没有任何配置的情况下初始化SideMenu。

默认TableViewController显示黑色背景。