iOS13 适配详细

对iOS13 适配的总结,下面有些是自己遇到的,有些是收集的,希望能给大家一些思路

  • iOS13中presentViewController的问题
  • iOS不允许valueForKey、setValue: forKey获取和设置私有属性,需要使用其它方式修改
  • 黑线处理crash
  • 黑夜模式 审核强制要求适配黑夜模式。
  • iOS13上获取DeviceToken
  • App启动过程中,部分View可能无法实时获取到frame
  • 状态栏(StatusBar)
  • Sign in with Apple -提供第三方登录
  • 即将废弃的 LaunchImage
  • MPMoviePlayerController 在iOS 13已经不能用了
  • UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
  • UISegmentedControl 选中的颜色
  • 内嵌WebView,一些图片路径,文件路径,不用写绝对路径,直接写文件名字即可,
  • 获取网络状态用到KVC的那种方法会发生崩溃

  1. 在iOS13中运行代码发现presentViewController和之前弹出的样式不一样。

会出现这种情况是主要是因为我们之前对UIViewController里面的一个属性,即modalPresentationStyle(该属性是控制器在模态视图时将要使用的样式)没有设置需要的类型。在iOS13中modalPresentationStyle的默认改为UIModalPresentationAutomatic,而在之前默认是UIModalPresentationFullScreen。

ViewController *vc = [[ViewController alloc] init];
vc.title = @"presentVC";
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationFullScreen;
[self.window.rootViewController presentViewController:nav animated:YES completion:nil];

注意:如果你某个控制器想使用卡片模式,需要注意你这个控制器底部是否有控件。卡片式的底部的控件容易被遮挡。比方说TZPhotoPickerController 这个常用的开源相册控件。当选择照片时底部的确定按钮就被遮挡。无法选中

  1. 在使用iOS 13运行项目时突然APP就crash掉了。定位到的问题是在设置UITextField的Placeholder也就是占位文本的颜色和字体时使用了KVC的方法:
[_textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[_textField setValue:[UIFont systemFontOfSize:14] forKeyPath:@"_placeholderLabel.font"];

可将其替换为

_textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"姓名" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor redColor]}];

UIsearchBar 使用“ _searchField”崩溃修改方式

  UITextField *searchField;
    if (@available(iOS 13.0, *)) {
       searchField =[self.searchBar valueForKey:@"_searchTextField"];
      }else
      {
          searchField = [ self.searchBar valueForKey:@"_searchField"];
      }
  1. 之前为了处理搜索框的黑线问题会遍历后删除UISearchBarBackground,在iOS13会导致UI渲染失败crash;解决办法是设置UISearchBarBackground的layer.contents为nil
public func clearBlackLine() {
        for view in self.subviews.last!.subviews {
            if view.isKind(of: NSClassFromString("UISearchBarBackground")!) {
                view.backgroundColor = UIColor.white
                view.layer.contents = nil
                break
            }
        }
    }
  1. 审核强制要求适配黑夜模式。
// 模式强制切换
if (darkMode) {
    if (@available(iOS 13.0, *)) {
        [UIApplication sharedApplication].keyWindow.overrideUserInterfaceStyle = UIUserInterfaceStyleDark;
    }
} else {
    if (@available(iOS 13.0, *)) {
        [UIApplication sharedApplication].keyWindow.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
    }
在 Info.plist 文件中,添加 key 为 User Interface Style,类型为 String,value 设置为 Light 可关闭黑暗模式。


已知问题

  • YYLabel 如果使用了 textLayout属性,切换模式的时候 无法自动修改layout文本的颜色
  • 内嵌WebView,需要手动修改css样式
  1. iOS13 正确的获得Devicetoken的代码如下:
#include 

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
    if (![deviceToken isKindOfClass:[NSData class]]) return;
    const unsigned *tokenBytes = (const unsigned *)[deviceToken bytes];
    NSString *hexToken = [NSString stringWithFormat:@"%08x%08x%08x%08x%08x%08x%08x%08x",
                          ntohl(tokenBytes[0]), ntohl(tokenBytes[1]), ntohl(tokenBytes[2]),
                          ntohl(tokenBytes[3]), ntohl(tokenBytes[4]), ntohl(tokenBytes[5]),
                          ntohl(tokenBytes[6]), ntohl(tokenBytes[7])];
    NSLog(@"deviceToken:%@",hexToken);
}

https://developer.umeng.com/docs/66632/detail/126489

  1. 可能是为了优化启动速度,App 启动过程中,部分View可能无法实时获取到正确的frame
  2. 状态栏(StatusBar)

目前状态栏也增加了一种模式,由之前的两种,变成了三种, 其中default由之前的黑色内容,变成了会根据系统模式,自动选择当前展示lightContent还是darkContent。

public enum UIStatusBarStyle : Int {
  case `default` // Automatically chooses light or dark content based on the user interface style

  @available(iOS 7.0, *)
  case lightContent // Light content, for use on dark backgrounds

  @available(iOS 13.0, *)
  case darkContent // Dark content, for use on light backgrounds
}

我们在使用的时候,就可以重写preferredStatusBarStyle的get方法:

override var preferredStatusBarStyle: UIStatusBarStyle{
    get{
        return .lightContent
    }
}
  1. Sign in with Apple -提供第三方登录的注意啦

如果你的应用使用了第三方登录,那么你可能也需要加下 「Sign in with Apple」
Sign In with Apple will be available for beta testing this summer. It will be required as an option for users in apps that support third-party sign-in when it is commercially available later this year.

  1. 即将废弃的 LaunchImage

从 iOS 8 的时候,苹果就引入了 LaunchScreen,我们可以设置 LaunchScreen来作为启动页。当然,现在你还可以使用LaunchImage来设置启动图。不过使用LaunchImage的话,要求我们必须提供各种屏幕尺寸的启动图,来适配各种设备,随着苹果设备尺寸越来越多,这种方式显然不够 Flexible。而使用 LaunchScreen的话,情况会变的很简单, LaunchScreen是支持AutoLayout+SizeClass的,所以适配各种屏幕都不在话下。
注意啦⚠️,从2020年4月开始,所有使⽤ iOS13 SDK的 App将必须提供 LaunchScreen,LaunchImage即将退出历史舞台。

  1. MPMoviePlayerController 在iOS 13已经不能用了

10.UISegmentedControl 选中的颜色

 if ( @available(iOS 13.0, *)) {
           self.segmentedControl.selectedSegmentTintColor = [UIColor clearColor];

       }else
       {
           self.segmentedControl.tintColor = [UIColor clearColor];

       }
  1. 内嵌WebView,一些图片路径,文件路径,不用写绝对路径,直接写文件名字即可
    https://www.jianshu.com/p/767e6f2d8435

12.下面这种获取网络状态的方法会发生崩溃


 UIApplication *app = [UIApplication sharedApplication];
    NSArray *children = nil;
    // 不能用 [[self deviceVersion] isEqualToString:@"iPhone X"] 来判断,因为模拟器不会返回 iPhone X
    id statusBar = [app valueForKeyPath:@"statusBar"];
    if ([statusBar isKindOfClass:NSClassFromString(@"UIStatusBar_Modern")]) {
        children = [[[statusBar valueForKey:@"statusBar"] valueForKey:@"foregroundView"] subviews];
    } else {
        children = [[statusBar valueForKey:@"foregroundView"] subviews];
    }
    NSString *state = [[NSString alloc] init];
    int netType = 0;
    for (id child in children) {
        if ([child isKindOfClass:NSClassFromString(@"UIStatusBarDataNetworkItemView")]) {
            //获取到状态栏
            netType = [[child valueForKeyPath:@"dataNetworkType"] intValue];
            switch (netType) {
                case 0:
                    state = @"none";
                    break;
                case 1:
                    state = @"2G";
                    break;
                case 2:
                    state = @"3G";
                    break;
                case 3:
                    state = @"4G";
                    break;
                case 5:
                    state = @"WIFI";
                    break;
                default:
                    break;
            }
        }
    }
    

你可能感兴趣的:(iOS13 适配详细)