NavigationItem的使用

333 阅读1分钟

创建导航栏菜单

let rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("我是菜单", comment: ""), style: .plain, target: self, action: #selector(clckMe))
            self.navigationItem.setRightBarButton(rightBarButtonItem, animated: true)


@objc func clickMe(){
    
}