iOS 处理 navigationBar.titleTextAttributes 属性时机(Swift)

笔者一般在 ViewController 的 viewWillAppear 中处理导航条的 UI 变化。比如是否隐藏导航栏、改变状态栏颜色等。但是最近发现在 viewWillAppear 中改变 navigationBar 的 titleTextAttributes 属性却出现了问题:

Issue

从当前 ViewController 点击导航栏返回的时候并没有生效,而使用滑动手势返回却可以生效。下面两个 GIF 分别表示想要的效果和问题情况:
美好的理想.gif

残酷的现实.gif
想直接看解决后代码(美好的理想.gif)的童鞋可以直接跳到文末↓↓↓。

Code

接下来展示示意代码,想看源码可以在 github 的 issues 分支中找到:
https://github.com/wiiale/NavgationTitlePoppingDemo/tree/issues

/// FirstViewController.swift
import UIKit

class FirstViewController: UIViewController {
    ...
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        
        navigationController?.setNavgationBarTitleTextAttributes(
            color: .nav_purple,
            font:  .nav_regular
        )
    }
    ...
}
/// SecondViewController.swift
import UIKit

class SecondViewController: UIViewController {
    ...
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        
        navigationController?.setNavgationBarTitleTextAttributes(
            color: .nav_black,
            font:  .nav_small
        )
    }
}

实际业务中可能按照需求会有更好更全的封装,但这里为了简单描述情况,对 setNavgationBarTitleTextAttributes 做了简单业务封装,只对 title 的颜色和字体做了处理。

import UIKit

extension UINavigationController {
    
    public func setNavgationBarTitleTextAttributes(color: UIColor?, font: UIFont?) {
        
        var textAttributes: [NSAttributedStringKey: AnyObject] = [:]
        
        if let c = color {
            textAttributes[.foregroundColor] = c
        }
        if let f = font {
            textAttributes[.font] = f
        }
        
        navigationBar.titleTextAttributes = textAttributes
    }
}

产生问题的原因

在 iOS 系统 10 以后,UIKit 已经更新,统一后台管理 UINavigationBar,UITabBar和UIToolbar。特别是,对这些视图的背景属性(例如背景或阴影图像或设置条形样式)的更改可能会启动条形码的布局传递以解析新的背景外观。
特别地,这意味着,试图改变的内部这些条的背景外观

  • layoutSubviews,
  • [UIView updateConstraints] ,
  • viewWillLayoutSubviews,
  • viewDidLayoutSubviews,
  • updateViewConstraints

或响应布局而调用的任何其他方法都可能导致布局循环。布局更改调用的 viewWillAppear 似乎触发了所提到的布局循环。

iOS 10 SDK Release Notes

result of a layout change

在 iOS 9 的模拟器上运行了 issues 分支的代码后,导航栏返回果然没有复现这个 BUG。

解决办法

比较简单的处理方法是在 SecondViewController 中重写 willMove(:) 方法,在这里将 titleAttribute 赋值回去,但这样的方式不够彻底,它显然不能处理两种或两种以上的状态变化。
更为稳妥的的方法是重写自定义 UINavigationController 中的popViewController(:)方法。

class FunNavigationViewController: UINavigationController {
    ...
    override func popViewController(animated: Bool) -> UIViewController? {
        let popViewController = super.popViewController(animated: animated)
        // 返回前
        if let attributes = topViewControllerNavBarTitleAttributes {
            setNavBarTitleAttributes(attributes)
        }
        transitionCoordinator?.animate(alongsideTransition: nil) { [weak self] _ in
            // 返回后
            if let attributes = self?.topViewControllerNavBarTitleAttributes {
                self?.setNavBarTitleAttributes(attributes)
            }
        }
        return popViewController
    }
}
class MyViewController: UIViewController, NavBarTitleChangeable {
    
    var preferredTextAttributes: [NSAttributedStringKey : AnyObject] {
        let item = FunNavTitleTextAttributesItem(color: .nav_purple, font:  .nav_regular)
        return getNavgationBarTitleTextAttributes(with: item)
    }

    ...
}

这里剥离了 NavBarTitleChangeable,在每个 ViewController 中利用继承协议、类似preferredStatusBarStyle设置的方法代替了 viewWillAppear 中的设置方法。抽象了 title 设置的同时优化了代码:

// NavBarTitleChangeable.swift

import UIKit

public protocol NavBarTitleChangeable: class {
    var preferredTextAttributes: [NSAttributedStringKey: AnyObject] { get }
}

extension NavBarTitleChangeable {
    
    public func getNavgationBarTitleTextAttributes(with item: FunNavTitleTextAttributesItem) -> [NSAttributedStringKey: AnyObject] {
        
        var textAttributes: [NSAttributedStringKey: AnyObject] = [:]
        
        if let color = item.color {
            textAttributes[.foregroundColor] = color
        }
        if let font = item.font {
            textAttributes[.font] = font
        }
        
        return textAttributes
    }
}

public struct FunNavTitleTextAttributesItem {
    let color: UIColor?
    let font: UIFont?
    init(color: UIColor? = nil, font: UIFont? = nil) {
        self.color = color
        self.font = font
    }
}

Demo:
https://github.com/wiiale/NavgationTitlePoppingDemo/tree/nav-title-changeable

解决后

实现理想


after.gif

注意点

App 打开时并不会调用 push 和 pop,造成首页的导航 titleTextAttributes 没有被设置。
处理方式:在自定义的 UINavigationControlle r中的 viewDidLoad 中设调用 setNavBarTitleAttributes,或在 AppDelegate 的 didFinishLaunchingWithOptions 中设置全局的UINavigationBar.appearance().titleTextAttributes

简单使用

Step1-Install

Clone Demo,将 NavBarTitleChangeable.swift 和 FunNavigationViewController.swift 文件拖入工程或直接复制代码:
https://github.com/wiiale/NavgationTitlePoppingDemo/tree/master

Step2-Usage

在想要改变状态的 VC 中继承 NavBarTitleChangeable 实现 preferredTextAttributes

class FirstViewController: UIViewController, NavBarTitleChangeable {
    var preferredTextAttributes: [NSAttributedStringKey : AnyObject] {
        let item = FunNavTitleTextAttributesItem(color: .purple, font:  .boldSystemFont(ofSize: 18))
        return getNavgationBarTitleTextAttributes(with: item)
    }
}
当然这里只是对 titleTextAttributes 的 color 和 font 做了简单封装处理,如有更复杂的业务还需要针对自己项目的情况做修改协议、textAttributes 属性等处理。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351

推荐阅读更多精彩内容