1.深色模式
可以在info.plist里配置
<key>User Interface Style</key>
<string>Light</string>
关闭深色模式
也可以获取ios13的主题模式
if(@available(iOS13.0, *)) {
UIUserInterfaceStyle mode = UITraitCollection.currentTraitCollection.userInterfaceStyle;
if(mode == UIUserInterfaceStyleDark) {
NSLog(@"深色模式");
}else if(mode == UIUserInterfaceStyleLight) {
NSLog(@"浅色模式");
}else{
NSLog(@"未知模式");
}
}