创建导航栏菜单
let rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("我是菜单", comment: ""), style: .plain, target: self, action: #selector(clckMe))
self.navigationItem.setRightBarButton(rightBarButtonItem, animated: true)
@objc func clickMe(){
}