美文网首页
iOS13 适配详细

iOS13 适配详细

作者: 心不静人静 | 来源:发表于2020-03-13 08:23 被阅读0次

    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.presentViewController

    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];

    2. 

    [_textFieldsetValue:[UIColor redColor]forKeyPath:@"_placeholderLabel.textColor"];[_textFieldsetValue:[UIFontsystemFontOfSize:14]forKeyPath:@"_placeholderLabel.font"];

    替换成

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

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

    UITextField*searchField;if(@available(iOS13.0,*)){searchField=[self.searchBar valueForKey:@"_searchTextField"];}else{searchField=[self.searchBar valueForKey:@"_searchField"];}

    3.

    之前为了处理搜索框的黑线问题会遍历后删除UISearchBarBackground,在iOS13会导致UI渲染失败crash;解决办法是设置UISearchBarBackground的layer.contents为nil

    publicfuncclearBlackLine(){forviewinself.subviews.last!.subviews{ifview.isKind(of:NSClassFromString("UISearchBarBackground")!){view.backgroundColor=UIColor.white                view.layer.contents=nilbreak}}}

    4.

    审核强制要求适配黑夜模式。

    // 模式强制切换if(darkMode){if(@available(iOS13.0,*)){[UIApplication sharedApplication].keyWindow.overrideUserInterfaceStyle=UIUserInterfaceStyleDark;}}else{if(@available(iOS13.0,*)){[UIApplication sharedApplication].keyWindow.overrideUserInterfaceStyle=UIUserInterfaceStyleLight;}在 Info.plist 文件中,添加 key 为 User Interface Style,类型为 String,value 设置为 Light 可关闭黑暗模式。

    5.

    已知问题

    YYLabel 如果使用了 textLayout属性,切换模式的时候 无法自动修改layout文本的颜色

    内嵌WebView,需要手动修改css样式

    6.

    iOS13 正确的获得Devicetoken的代码如下:

    #include<arpa/inet.h>-(void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken{if(![deviceToken isKindOfClass:[NSData class]])return;constunsigned*tokenBytes=(constunsigned*)[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

    7.

    可能是为了优化启动速度,App 启动过程中,部分View可能无法实时获取到正确的frame

    状态栏(StatusBar)

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

    publicenumUIStatusBarStyle:Int{case`default`// Automatically chooses light or dark content based on the user interface style@available(iOS7.0,*)caselightContent// Light content, for use on dark backgrounds@available(iOS13.0,*)casedarkContent// Dark content, for use on light backgrounds}

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

    overridevarpreferredStatusBarStyle:UIStatusBarStyle{get{return.lightContent}}

    8.

    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.

    即将废弃的 LaunchImage

    从 iOS 8 的时候,苹果就引入了 LaunchScreen,我们可以设置 LaunchScreen来作为启动页。当然,现在你还可以使用LaunchImage来设置启动图。不过使用LaunchImage的话,要求我们必须提供各种屏幕尺寸的启动图,来适配各种设备,随着苹果设备尺寸越来越多,这种方式显然不够 Flexible。而使用 LaunchScreen的话,情况会变的很简单, LaunchScreen是支持AutoLayout+SizeClass的,所以适配各种屏幕都不在话下。

    9.

    注意啦⚠️,从2020年4月开始,所有使⽤ iOS13 SDK的 App将必须提供 LaunchScreen,LaunchImage即将退出历史舞台。

    MPMoviePlayerController 在iOS 13已经不能用了

    10.

    UISegmentedControl 选中的颜色

    if(@available(iOS13.0,*)){self.segmentedControl.selectedSegmentTintColor=[UIColor clearColor];}else{self.segmentedControl.tintColor=[UIColor clearColor];}

    内嵌WebView,一些图片路径,文件路径,不用写绝对路径,直接写文件名字即可

    https://www.jianshu.com/p/767e6f2d8435

    11.

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

    UIApplication*app=[UIApplication sharedApplication];NSArray*children=nil;// 不能用 [[self deviceVersion] isEqualToString:@"iPhone X"] 来判断,因为模拟器不会返回 iPhone Xid 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];intnetType=0;for(id childinchildren){if([child isKindOfClass:NSClassFromString(@"UIStatusBarDataNetworkItemView")]){//获取到状态栏netType=[[child valueForKeyPath:@"dataNetworkType"]intValue];switch(netType){case0:state=@"none";break;case1:state=@"2G";break;case2:state=@"3G";break;case3:state=@"4G";break;case5:state=@"WIFI";break;default:break;}}}

    相关文章

      网友评论

          本文标题:iOS13 适配详细

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