如何在导航栏

时间:2017-08-03 08:57:10

标签: ios swift uiview uibutton uinavigationbar

我已经实现了幻灯片菜单,它有一个关闭按钮,但关闭按钮位于导航栏下方。它如何将它带到导航栏上方并作为菜单滑块滑动。 这就是我想要关闭按钮的方式。

enter image description here

1 个答案:

答案 0 :(得分:1)

试试这个:

let window = UIApplication.sharedApplication().keyWindow!
window.addSubview(menuView)
window?.bringSubview(toFront: menuView)