self.navigationItem.title = "设置本页面的导航栏"
self.navigationController?.navigationBar.isTranslucent = false
//设置导航栏系统默认按钮图标和文字的颜色
self.navigationController?.navigationBar.tintColor = .white
// //导航栏的背景颜色
self.navigationController?.navigationBar.barTintColor = .orange
//设置导航栏标题文字的颜色
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.white]
//设置导航栏文字的其他样式
//self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.font:UIFont.italicSystemFont(ofSize: 18),NSAttributedString.Key.backgroundColor:UIColor.purple]
//设置导航栏的背景颜色
self.navigationController?.navigationBar.setBackgroundImage(UIImage(named: "gougou.jpg"), for: .default)
// 设置导航栏背景图片
let imagegougou = UIImage.init(named: "导航栏@2x")
self.navigationController?.navigationBar.setBackgroundImage(imagegougou, for: .default)
// 设置(去掉)导航栏底部线条
self.navigationController?.navigationBar.shadowImage = UIImage()
//第一种自定义返回按钮
let leftButton = UIButton.init(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
leftButton.backgroundColor = .red
leftButton.setImage(UIImage.init(named: "backWhit(gray)"), for: .normal)
leftButton.setTitleColor(.white, for: .normal)
leftButton.titleLabel?.font = UIFont.init(name: "Helvetica-Bold", size: 15)
//leftButton.setTitle("返回", for: .normal)
leftButton.addTarget(self, action: #selector(backClick), for: .touchUpInside)
self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: leftButton)
//另外一种方式设置导航栏图片按钮
///下面2行代码作用是不让按钮的图标给渲染成系统蓝色的
var leftImage = UIImage.init(named: "backWhit(gray)")
leftImage = leftImage!.withRenderingMode(.alwaysOriginal)
self.navigationItem.leftBarButtonItem = UIBarButtonItem(image: leftImage, style: .plain, target: self, action: #selector(leftButtonClick))
//返回按钮方法的实现
@objc func backClick() {
self.navigationController?.popViewController(animated: true)
}
@objc func leftButtonClick () {
self.navigationController?.popViewController(animated: true)
}
Swift5.0 导航栏的基本使用
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 刚开始接触swift 的 UI部分开发的时候,没有找到快捷有效的资料,因此在自己学习的时候做了下笔记,以便于后面来...
- 全局修改(整个app所有的返回按钮都改掉): storyboard 点storyboard空白处,然后如图 代码 ...