我在 iOS 应用程序中添加了侧边菜单,但菜单显示为黑色
I have added side menu in iOS app, but menu appearing in black color
我已通过代码实现使用此 iOS Library 添加了侧边菜单。下面在视图中编写的代码确实加载了函数:
let menuRightNavigationController = UISideMenuNavigationController(rootViewController: SideMenuViewController())
SideMenuManager.default.menuRightNavigationController = menuRightNavigationController
SideMenuManager.default.menuFadeStatusBar = false
下面是用按钮操作写的:
present(SideMenuManager.default.menuRightNavigationController!, animated: true, completion: nil)
下面附上结果截图:
如果你在SideMenu的RootViewController里面用代码添加了TableViewController,你可以给tableView.backgroundColor = .white
at viewDidLoad
函数。可能您在没有任何配置的情况下初始化 SideMenu。
默认 TableViewController 显示黑色背景。
我已通过代码实现使用此 iOS Library 添加了侧边菜单。下面在视图中编写的代码确实加载了函数:
let menuRightNavigationController = UISideMenuNavigationController(rootViewController: SideMenuViewController())
SideMenuManager.default.menuRightNavigationController = menuRightNavigationController
SideMenuManager.default.menuFadeStatusBar = false
下面是用按钮操作写的:
present(SideMenuManager.default.menuRightNavigationController!, animated: true, completion: nil)
下面附上结果截图:
如果你在SideMenu的RootViewController里面用代码添加了TableViewController,你可以给tableView.backgroundColor = .white
at viewDidLoad
函数。可能您在没有任何配置的情况下初始化 SideMenu。
默认 TableViewController 显示黑色背景。