美文网首页
iOS13适配

iOS13适配

作者: vicentwyh | 来源:发表于2020-05-12 17:49 被阅读0次

    新特性

    Sign In With Apple登录

    如果 APP 支持三方登陆(Facbook、Google、微信、QQ、支付宝等),就必须支持苹果登陆,且要放前边:Introducing Sign In with Apple

    附上官方Demo:下载地址

    Dark Mode-暗黑模式

    暗黑模式 状态判断 && 切换监听
    //判断模式状态
    UITraitCollection:可以获取到足以区分所有设备的特征
    
    if UITraitCollection.current.userInterfaceStyle == .dark {
     //暗黑模式
    } else {
    //正常模式
    }
     
    //监听模式切换
    // 注意:参数为变化前的traitCollection
    override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {}
    // 判断两个UITraitCollection对象是否不同
    override func hasDifferentColorAppearance(comparedTo traitCollection: UITraitCollection?) -> Bool { }
    
    禁用暗黑模式
    • App禁用暗黑模式
      iOS13系统下为使app不受深色模式影响,可以再info.plist中添加如下:

    • window禁用暗黑模式

    if (@available(iOS 13.0, *)) {
        [UIApplication sharedApplication].keyWindow.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
    }
    
    • ViewController禁用暗黑模式
    #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
    - (UIUserInterfaceStyle)overrideUserInterfaceStyle{
        return UIUserInterfaceStyleLight;
    }
    #endif
    
    • View禁用暗黑模式
    if (@available(iOS 13.0, *)) {
        view.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
    }
    

    API适配

    私有属性禁止使用KVC访问

    iOS 13不再允许使用 valueForKey、setValue:forKey: 等方法获取或设置私有属性,虽然编译可以通过,但是在运行时会直接崩溃,并提示一下崩溃信息,例如:
    
    //UITextField 访问私有属性 _placeholderLabel
    [textfield setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
    
    'Access to UITextField's _placeholderLabel ivar is prohibited. This is an application bug'
    

    推送的 deviceToken 获取到的格式发生变化

    原本可以直接将 NSData 类型的 deviceToken 转换成 NSString 字符串,然后替换掉多余的符号即可:
    
    - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
        NSString *token = [deviceToken description];
        for (NSString *symbol in @[@" ", @"<", @">", @"-"]) {
            token = [token stringByReplacingOccurrencesOfString:symbol withString:@""];
        }
        NSLog(@"deviceToken:%@", token);
    }
    

    在 iOS 13 中,这种方法已经失效,NSData类型的 deviceToken 转换成的字符串变成了:

    {length = 32, bytes = 0xd7f9fe34 69be14d1 fa51be22 329ac80d ... 5ad13017 b8ad0736 }
    

    需要进行一次数据格式处理,参考友盟的做法,可以适配新旧系统,获取方式如下:

    - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
    {
        if (![deviceToken isKindOfClass:[NSData class]]) return;
    
        NSString *deviceTokenString;
        if (@available(iOS 13.0, *)) {
            const unsigned *tokenBytes = (const unsigned *)[deviceToken bytes];
            deviceTokenString = [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])];
        } else {
            deviceTokenString = [[deviceToken description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>- "]];
            
        }
        LOG(@"deviceToken:%@",deviceTokenString);
    }
    

    UIViewController 弹出形式发生变化

    在 iOS 13 UIModalPresentationStyle 枚举的定义中,苹果新加了一个枚举值:

    //Defaults to UIModalPresentationAutomatic on iOS starting in iOS 13.0, and UIModalPresentationFullScreen on previous versions. Defaults to UIModalPresentationFullScreen on all other platforms.
    typedef NS_ENUM(NSInteger, UIModalPresentationStyle) {
        ...,
        UIModalPresentationAutomatic API_AVAILABLE(ios(13.0)) = -2,
    };
    

    在 iOS 13 中此枚举值直接成为了模态弹出的默认值,因此 presentViewController 方式打开视图是如下的视差效果,默认是下滑返回:


    解决办法:

    1)presentedVC.modalPresentationStyle = .fullscreen
    2)//重写 UINavigationController :
      override func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil) {
             viewControllerToPresent.modalPresentationStyle = .fullScreen
            super.present(viewControllerToPresent, animated: flag, completion: completion)
        }
    

    MPMoviePlayerController 被弃用

    MediaPlayer.framework 中的MPMoviePlayerController类支持本地视频和网络视频播放。但是在 iOS 9开始被弃用,
    如果在 iOS 13 中继续使用的话会直接抛出异常:

    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'MPMoviePlayerController is no longer available. Use AVPlayerViewController in AVKit.'
    

    UITabbar

    iOS13设置tabbar shadowImage 失效

    self.tabBar.backgroundImage = [UIImage new];
    self.tabBar.shadowImage = [UIImage new];
    

    以上这种方式设置shadowImage,显示的还是系统默认的灰色直线:

    if (@available(iOS 13.0, *)) {
        UITabBarAppearance *appearance = [tabBarController.tabBar.standardAppearance copy];
        appearance.backgroundImage = BGImage;
        appearance.shadowImage = shadowImage;
        tabBarController.tabBar.standardAppearance = appearance;
     } else {
        tabBarController.tabBar.backgroundImage = BGImage;
        tabBarController.tabBar.shadowImage = shadowImage;
    }
    

    UIVebView被弃用

    2020年5月开始,所有未上架App Store的新 App 如果包含 UIWebView,将无法提交到 App Store 进行审批


    排查项目中包含UIVebView的文件与静态库
    终端控制台cd 到项目目录,执行以下命令:
    $ grep -r UIWebView . 
    

    注意:脚本包含最后一个标点符号
    grep -r <关键字> 为 Linux 命令,用于快速搜索指定目录下含有关键字的文件

    LaunchImage 被弃用

    2020年4月开始,所有支持 iOS 13 的 App 必须提供 LaunchScreen.storyboard,否则将无法提交到 App Store 进行审批。
    LaunchScreen是支持AutoLayout+SizeClass的,所以适配各种屏幕都不在话下
    LaunchScreen.storyboard启动图适配:

    • 方案1:使用一张通用图片(推荐
      主要是在LaunchScreen.storyboard中添加图片并设置好约束,然后将准备好的图片设置好即可。这种方案在不同设备上可能会出现不同程度的裁剪。
      注意
      1)图片资源直接放在项目目录下,不能放置在Assets.xcasset文件夹中,否则手机将无法显示启动页图片。
      2)清空Assets.xcasset的LaunchImage图片,保留LaunchImage空文件夹。前者不清空会导致Launch.SB上的图片和LaunchImage同时显示,LaunchImage的图片一闪而过。LaunchImage文件夹不保留会报错.

    • 方案2:使用一套图片
      注意:此方法违背了Apple精简启动图的初衷,会给UI添加额外工作
      1)在Xcode的Assets.xcassets中创建图片组,名称随意:


      2)右键图片组 --> Show in Finder --> 进入修改Contents.json --> 修改相应图片组信息:

    3)添加需要的设备:
    //修改后
    {
    "images" : [
    {
    "idiom" : "universal",
    "scale" : "1x"
    },{
    "idiom" : "universal",
    "scale" : "2x"
    },{
    "idiom" : "universal",
    "scale" : "3x"
    },{
    "idiom" : "iphone",
    "subtype" : "retina4",
    "scale" : "1x"
    },{
    "idiom" : "iphone",
    "subtype" : "retina4",
    "scale" : "2x"
    },{
    "idiom" : "iphone",
    "subtype" : "retina4",
    "scale" : "3x"
    },{
    "idiom" : "iphone",
    "subtype" : "736h",
    "scale" : "3x"
    },{
    "idiom" : "iphone",
    "subtype" : "667h",
    "scale" : "2x"
    },{
    "idiom" : "iphone",
    "subtype" : "2436h",
    "scale" : "3x"
    }, {
    "idiom" : "iphone",
    "subtype" : "2688h",
    "scale" : "3x"
    },{
    "idiom" : "iphone",
    "subtype" : "1792h",
    "scale" : "2x"
    }
    ],
    "info" : {
    "version" : 1,
    "author" : "xcode"
    }
    }


    5)将对应图片添加进入图片组中:
    6)设置LaunchScreen.storyboard,并将图片设置成刚刚的start

    相关文章

      网友评论

          本文标题:iOS13适配

          本文链接:https://www.haomeiwen.com/subject/lcsbnhtx.html