初见iOS 13 适配

iOS13 暗夜模式适配

2020-05-19  本文已影响0人  益达哥
Dark Mode.jpeg

最近因为需要拾起一年之前的公司项目,iOS 13 系统下需要进行适配的太多了,做个总结吧。

这里小伙伴们需要了解

UITraitCollection

在 iOS 13 中, UITraitCollection 来判断当前系统的模式。UIViewUIViewControllerUIScreenUIWindow都遵从了UITraitEnvironment 这个协议,这几个类都拥有一个叫做 traitCollection 的属性,所以我们可以根据这个属性判断当前 App 的颜色模式:

BOOL isDark = (self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark);

还可以通过 UITraitCollection.current 这个属性来获取当前 App 的颜色模式。
官方说明只有在下面这些方法中,才可以使用这个属性:

UIView

draw()  
layoutSubview()
traitCollectionDidChange()
tintColorDidChange()

UIViewController

viewWillLayoutSubviews()
viewDidLayoutSubviews()
traitCollectionDidChange()

UIPresentationController

containerViewWillLayoutSubviews() 
containerViewDidLayoutSubviews()
traitCollectionDidChange()  

1.代码颜色配置:

{
    if (@available(iOS 13.0, *)) {
        return [UIColor colorWithDynamicProvider:^UIColor * _Nonnull(UITraitCollection * _Nonnull tc) {
            if (tc.userInterfaceStyle == UIUserInterfaceStyleLight){//普通模式
                return lightColor;
            }else if (tc.userInterfaceStyle == UIUserInterfaceStyleDark){//暗夜模式
                return darkColor;
            }
            return lightColor;
        }];
    } else {
        return lightColor;
    }
}

2:图片适配

注意啦⚠️,同一项目工程内如果新建了多个Assets文件,在我们打包后,系统会自动会生成一个新的Assets.car 文件,所以必须要保证Assets内资源文件的名字命名唯一性.

2.全局关闭暗黑模式

系统配置:

在Info.plist 文件中,添加UIUserInterfaceStyle key 名字为 User Interface Style 值为String

UIUserInterfaceStyle key 的值设置为 Light

3.png
代码配置;

代码关闭黑暗模式 强制关闭暗黑模式

if(@available(iOS 13.0,*)){
    self.window.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
}
#endif

3.单一配置暗夜模式

在 iOS 13中,UIViewUIViewControllerUIWindow 有了一个 overrideUserInterfaceStyle 的新属性,可以覆盖系统的模式。

单个页面或视图开启或者关闭暗黑模式,设置 overrideUserInterfaceStyle为对应的模式,强制限制该视图与其子视图以设置的模式进行展示,不跟随系统模式改变进行改变。

self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;

这样设置会影响当前view viewController window 以及它下面的任何子内容。

单一视图监听系统的模式, overrideUserInterfaceStyle 属性设置为.unspecified就可以了。

参考资料:

How To Adopt Dark Mode In Your iOS App

Backwards compatibility for iOS 13 system colors

写给设计师的指南:iOS 13 Dark Mode 深度解析

UITraitCollection详解

上一篇下一篇

猜你喜欢

热点阅读