我在 iOS 应用程序中添加了侧边菜单,但菜单显示为黑色 [关闭]
Posted
技术标签:
【中文标题】我在 iOS 应用程序中添加了侧边菜单,但菜单显示为黑色 [关闭]【英文标题】:I have added side menu in iOS app, but menu appearing in black color [closed] 【发布时间】:2018-06-18 12:46:17 【问题描述】:我已经通过代码实现使用这个ios Library 添加了侧边菜单。下面用视图编写的代码确实加载了函数:
let menuRightNavigationController = UISideMenuNavigationController(rootViewController: SideMenuViewController())
SideMenuManager.default.menuRightNavigationController = menuRightNavigationController
SideMenuManager.default.menuFadeStatusBar = false
下面是用按钮动作写的:
present(SideMenuManager.default.menuRightNavigationController!, animated: true, completion: nil)
下面附上结果截图:
【问题讨论】:
您好,我正在为我当前的项目使用相同的库,您如何定义SideMenuViewController()
的视图?是通过 .storyboard,还是通过 .xib?
感谢@CoderFrom94 回复我在RootViewController 中使用ViewController 而不是TableViewController,现在可以正常使用了。
【参考方案1】:
如果你用代码添加了位于 SideMenu 的 RootViewController 内的 TableViewController,你可以在 viewDidLoad
函数中提供 tableView.backgroundColor = .white
。可能您在没有任何配置的情况下初始化 SideMenu。
默认 TableViewController 显示黑色背景。
【讨论】:
谢谢你,你让我很开心。我使用 ViewController 而不是 TableViewController,现在 tableview 出现在我的侧边菜单中。 不客气。享受使用图书馆。 @Huzaifaameen以上是关于我在 iOS 应用程序中添加了侧边菜单,但菜单显示为黑色 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章