iOS13后推出暗黑模式,以及一些细节调整,如果不进行适配,用xcode11打包后,app显示会存在显示异常。本文介绍的是如何快速进行一些适配,保持之前app的样子。
Present 不能全屏问题
用xcode11打包 present控制器不会占满屏幕,因为modalPresentationStyle
枚举增加了,默认为UIModalPresentationAutomatic
。我们如果不想这种效果,需要手动更改vc.modalPresentationStyle = UIModalPresentationFullScreen
。
解决方式
可以使用分类交换方法,快速修改工程所有的地方。
判断模式等于UIModalPresentationAutomatic
时修改为UIModalPresentationFullScreen
typedef NS_ENUM(NSInteger, UIModalPresentationStyle) {
UIModalPresentationFullScreen = 0,
UIModalPresentationPageSheet API_AVAILABLE(ios(3.2)) API_UNAVAILABLE(tvos),
UIModalPresentationFormSheet API_AVAILABLE(ios(3.2)) API_UNAVAILABLE(tvos),
UIModalPresentationCurrentContext API_AVAILABLE(ios(3.2)),
UIModalPresentationCustom API_AVAILABLE(ios(7.0)),
UIModalPresentationOverFullScreen API_AVAILABLE(ios(8.0)),
UIModalPresentationOverCurrentContext API_AVAILABLE(ios(8.0)),
UIModalPresentationPopover API_AVAILABLE(ios(8.0)) API_UNAVAILABLE(tvos),
UIModalPresentationBlurOverFullScreen API_AVAILABLE(tvos(11.0)) API_UNAVAILABLE(ios) API_UNAVAILABLE(watchos),
UIModalPresentationNone API_AVAILABLE(ios(7.0)) = -1,
UIModalPresentationAutomatic API_AVAILABLE(ios(13.0)) = -2,
};
#import "UIViewController+FullScreenPresent.h"
@implementation UIViewController (FullScreenPresent)
+ (void)load {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
Class targetClass = [self class];
SEL originalSelector = @selector(presentViewController:animated:completion:);
SEL swizzledSelector = @selector(full_presentViewController:animated:completion:);
[self swizzleMethod:targetClass orgSel:originalSelector swizzSel:swizzledSelector];
});
}
- (void)full_presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion {
if (@available(iOS 13.0, *)) {
if (viewControllerToPresent.modalPresentationStyle == UIModalPresentationAutomatic) {
//if (viewControllerToPresent.modalPresentationStyle == -2) { // 如果想要兼容xcode11以下运行 使用
viewControllerToPresent.modalPresentationStyle = UIModalPresentationFullScreen;
}
}
[self full_presentViewController:viewControllerToPresent animated:flag completion:completion];
}
@end
KVC崩溃问题
苹果一直不允许使用kvc修改系统私有属性,现在一些直接会导致崩溃了,目前最多的还是KVC设置_placeholderLabel.textColor
解决方式:
使用 textField.attributedPlaceholder = place;
UISearchBar崩溃问题
for (UIView *view in _chatListSearchBar.subviews) {
if ([view isKindOfClass:NSClassFromString(@"UIView")] && view.subviews.count > 0) {
[[view.subviews objectAtIndex:0] removeFromSuperview];
break;
}
}
对于系统的searchBar,我们可能为了特定的UI显示,对于searchbar的子视图进行过hidden,remove操作,现在都会导致崩溃,可能是系统对searchBar内部实现进行了修改。
解决方式
自己封装实现类似的界面。
UISegmentedControl 显示异常
iOS13 UISegmentedControl系统显示为了适配暗黑模式已经改变,原始的 tintColor ,cornerRadius已经没有效果,字体在明亮模式也变成了黑色。
解决方式 : 因为发现圆角设置无效,如果设计中包含圆角,实际显示还是无法和之前一样。
if (@available(iOS 13.0, *)) {
// 设置选中时的颜色
self.segment.selectedSegmentTintColor = XKMainTypeColor;
// 设置字体的颜色
[self.segment setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]} forState:UIControlStateSelected];
[self.segment setTitleTextAttributes:@{NSForegroundColorAttributeName:XKMainTypeColor} forState:UIControlStateNormal];
self.segment.layer.borderWidth = 1;
self.segment.layer.borderColor = XKMainTypeColor.CGColor; // 边框颜色
[self.segment setBackgroundColor:[UIColor whiteColor]];
} else {
self.segment.layer.masksToBounds = YES;
self.segment.layer.cornerRadius = 15;
self.segment.backgroundColor = [UIColor whiteColor];
self.segment.layer.masksToBounds = YES;
self.segment.layer.cornerRadius = 15;
self.segment.layer.borderWidth = 1;
self.segment.layer.borderColor = XKMainTypeColor.CGColor; // 边框颜色
self.segment.tintColor = XKMainTypeColor;
}
状态栏颜色切换异常
如果工程中使用的是statusBarStyle控制界面状态栏的颜色设置, 会发现该黑色的状态栏变成了白色,因为之前设置状态栏颜色时只有两个枚举 UIStatusBarStyleDefault
黑色,UIStatusBarStyleLightContent
白色。 iOS13 新加了UIStatusBarStyleDarkContent
, 原本的UIStatusBarStyleDefault
会跟随是否是暗黑模式自动选择。如果我们不想跟着自动走。
解决方式 :
if (dark) { // 把导航栏变白色
if (@available(iOS 13.0, *)) {
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDarkContent;
//[UIApplication sharedApplication].statusBarStyle = 3;
} else {
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
}
} else {
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
}
暗黑模式
这里只讨论不适配暗黑模式,怎么处理工程的显示异常。 适配暗黑模式方法可移步大厂实现方案:QMUITheme
因为暗黑模式的存在,如果开发没有进行适配,用户将系统设置设置为暗黑模式时,一些界面颜色会自动变成暗黑状态的颜色。所以强行设置当前模式
单个控制器不适配暗黑模式
[vc setOverrideUserInterfaceStyle:UIUserInterfaceStyleLight];
整个工程界面都不适配暗黑模式
[self.window setOverrideUserInterfaceStyle:UIUserInterfaceStyleLight];