iOS SideMenu背景图片无法正确显示

时间:2018-12-12 05:31:41

标签: ios uistoryboard

我已经设置了我的项目,以最大限度地模仿SideMenu示例项目,但是侧面视图的背景图片是 显示不正确。我只想在我设置的单元格下面有下划线,没有标题栏,并且将背景图像拉伸到了侧面菜单上,没有重复过几次。我在情节提要上相当虚弱,因此,如果有任何需要帮助的信息,请告诉我。我已经完成了所有可能无法找到的有用的属性设置。

我在情节提要界面中包含了我想要获得的外观图片,我当前的应用程序和当前的表格视图

下面是我的代码,显示了我如何设置侧面菜单背景图像。

SideMenuManager.default.menuLeftNavigationController = storyboard!.instantiateViewController(withIdentifier: "LeftMenuNavigationController") as? UISideMenuNavigationController
    SideMenuManager.default.menuAnimationBackgroundColor = UIColor(patternImage: UIImage(named: "sidemenubackground")!)
            // Enable gestures. The left and/or right menus must be set up above for these to work.
    // Note that these continue to work on the Navigation Controller independent of the View Controller it displays!
    SideMenuManager.default.menuAddPanGestureToPresent(toView: self.navigationController!.navigationBar)
    SideMenuManager.default.menuAddScreenEdgePanGesturesToPresent(toView: self.navigationController!.view)

我正在努力实现这种外观。我当前的视图反复重复背景图像,顶部有一个标题栏,而在不存在的单元格下有下划线:

Screen Shot

这是我的侧面菜单当前的样子:

Screen Shot

这是我当前的故事板在情节提要中的外观:

Screen Shot

opening gif

0 个答案:

没有答案