美文网首页
iOS14适配

iOS14适配

作者: 王家小雷 | 来源:发表于2020-09-24 18:33 被阅读0次

    UIDatePicker

    在 iOS 14 开始,UIDatePicker 默认样式为:

    image

    而在 iOS14 之前的样式是

    image

    同样的代码,显示样式不一样

    UIDatePicker *datePicer = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 200, self.width, 100)];
    datePicer.backgroundColor = [UIColor whiteColor];
    [self addSubview:datePicer];
    
    

    虽然有设置 UIDatePickerframe,但是在 iOS 14 上完全没有效果,要想在 iOS 14 上显示跟之前一样,还要再设置 preferredDatePickerStyle 这个属性为 UIDatePickerStyleWheels.

    /// Request a style for the date picker. If the style changed, then the date picker may need to be resized and will generate a layout pass to display correctly.
    @property (nonatomic, readwrite, assign) UIDatePickerStyle preferredDatePickerStyle API_AVAILABLE(ios(13.4)) API_UNAVAILABLE(tvos, watchos);
    
    

    对于这个属性,是 UIDatePicker 的样式,如果样式发生了更改,则可能需要调整 UIDatePicker 的大小并生成布局展示出来

    所以如果只是单单设置了这个属性还不行,还需要再重新设置 FramebackgroundColor

    UIDatePicker *datePicer = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 200, self.width, 100)];
    if (@available(iOS 13.4, *)) {
        datePicer.preferredDatePickerStyle = UIDatePickerStyleWheels; // 只设置了 preferredDatePickerStyle 属性
    }
    datePicer.backgroundColor = [UIColor whiteColor];
    [self addSubview:datePicer];
    
    
    image
    CGRect frame = CGRectMake(0, 200, self.width, 100);
    UIDatePicker *datePicer = [[UIDatePicker alloc] initWithFrame:CGRectZero];
    if (@available(iOS 13.4, *)) {
        datePicer.preferredDatePickerStyle = UIDatePickerStyleWheels; // 只设置了 preferredDatePickerStyle 属性
    }
    datePicer.backgroundColor = [UIColor whiteColor];
    datePicer.frame = frame;
    [self addSubview:datePicer];
    
    
    image

    UITableViewCell

    在 iOS 14 环境下,UITableViewCell 的结构如下:

    image

    而在 iOS 14 之前,UITableViewCell 的结构如下:

    image

    对比可以发现,iOS14 多了一个 _UISystemBackgroundView 和一个子视图
    如果我们在cell 中创建新的 UI 控件,然后直接添加到 cell 中,所以在 iOS14 下,如果直接讲 UI 空间添加到 cell 上面,默认会放在 contentView 下面,如果有一些交互事件,这时候是无法响应的,因为被 contentView 给挡住了,所以需要添加到 contentView 上面.

    UIPageControl

    在之前,如果想要修改 UIPageControl 默认图片和选中图片,需要按照如下方式修改:

    [_pageControl setValue:_pageIndicatorImage forKeyPath:@"pageImage"];
    [_pageControl setValue:_currentPageIndicatorImage forKeyPath:@"currentPageImage"];
    
    

    但是在 iOS14 开始,这样修改直接一个异常,提示调用过时的私有方法:

    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Call to obsolete private method -[UIPageControl _setPageImage:]'
    
    
    image
    UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 100, self.view.width, 30)];
    pageControl.backgroundColor = [UIColor orangeColor];
    pageControl.numberOfPages = 6;
    
    if (@available(iOS 14.0, *)) {
        pageControl.backgroundStyle = UIPageControlBackgroundStyleMinimal;
        pageControl.allowsContinuousInteraction = false;
        pageControl.preferredIndicatorImage = [UIImage imageNamed:@"page_currentImage"];
        // 目前发现只能通过这样的方式去设置当前选中的图片颜色
        pageControl.currentPageIndicatorTintColor = [UIColor redColor];
        [pageControl setIndicatorImage:[UIImage imageNamed:@"live"] forPage:2];
    } else {
        [pageControl setValue:[UIImage imageNamed:@"page_image"] forKeyPath:@"pageImage"];
        [pageControl setValue:[UIImage imageNamed:@"page_currentImage"] forKeyPath:@"currentPageImage"];
    }
    [self.view addSubview:pageControl];
    
    

    运行不同环境

    iOS 14 之前环境

    image

    iOS 14 之后环境

    image

    CALayer 的 mask

    公司所在的项目中,聊天界面利用CALayermask方式将背景弄成一个气泡的样式,在 iOS 14 之前是好的,但是在 iOS 14 上就显示不出来了.具体的方式是将一个气泡图片,用一个 UIImageView 加载出来,然后将这个气泡的 ImageViewlayer 作为一个遮罩,放在图片消息上面去.
    代码类似下面的:

    UIImageView *imageView = [UIImageView new];
    imageView.image = [UIImage imageNamed:@"calendar"];
    imageView.size = CGSizeMake(200, 200);
    imageView.center = self.center;
    [self addSubview:imageView];
    
    UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 150, 80)];
    imgView.image = [UIImage imageNamed:@"green_pop"];
    imageView.layer.mask = imgView.layer;
    
    

    以上代码运行结果,在不同的环境下,显示出来的效果不一样

    image image

    iOS14 显示不出来,但是在 iOS12.4 却能显示出来

    后面在添加到 imageView.layer.mask 之前,将 imgView 添加到某个视图上去,发现在 iOS 14 上又能显示出来,所以想是不是在 iOS14 上的渲染逻辑发生了改变

    image
    UIImageView *imageView = [UIImageView new];
    imageView.image = [UIImage imageNamed:@"calendar"];
    imageView.size = CGSizeMake(200, 200);
    imageView.center = self.center;
    [self addSubview:imageView];
    
    UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 150, 80)];
    imgView.image = [UIImage imageNamed:@"green_pop"];
    [imageView addSubview:imgView];
    imageView.layer.mask = imgView.layer;
    
    

    其实可以直接使用 layercontent 进行设置图片

    image
    UIImageView *imageView = [UIImageView new];
    imageView.image = [UIImage imageNamed:@"calendar"];
    imageView.size = CGSizeMake(200, 200);
    imageView.center = self.center;
    [self addSubview:imageView];
    CALayer *maskLayer = [[CALayer alloc] init];
    maskLayer.frame = CGRectMake(0, 0, 180, 90);
    maskLayer.contents = (__bridge id)[UIImage imageNamed:@"green_pop"].CGImage;
    imageView.layer.mask = maskLayer;
    
    

    这样也能显示出来

    1. IDFA隐私加强

    IDFA默认关闭,需要向用户申请获取权限,需要在info.plist中明示用户申请权限:
    key : NSUserTrackingUsageDescription
    value: “获取设备信息用以精准推送您喜欢的内容”(用于显示给用户的话术)
    注意:需要用户在手机中打开追踪开关,该开关默认关闭。如果用户不打开该开关则无法获取idfa,也无法申请权限。另外需要添加FrameWork: AppTrackingTransparency
    [图片上传失败...(image-f1ddd7-1600944463278)]

    2. 定位获取变更

    IOS 14可以授权模糊定位(Precise Location),默认给出精准定位。APP可以申请单次的精准定位。

    申请的单次精准定位本次APP生命周期内有效,APP一个生命周期内可以多次申请。任何一次允许后则可正常获取精准定位。申请方式:需要在info.plist中配置:

    NSLocationTemporaryUsageDescriptionDictionary
    key:precise。用于request的key值
    value:申请定位用于给您做精准推荐。(用于显示给用户的话术)

    [CLLocationManager requestTemporaryFullAccuracyAuthorizationWithPurposeKey:];
    
    

    也可以不获取精准定位直接请求模糊定位:NSLocationDefaultAccuracyReduced 值为true

    注意:申请单次精准定位的前提是用户选择了给模糊定位。如果用户拒绝给定位或者已经给出精准定位,则无法申请单次精准定位。

    3. 新特性Clips

    类似于小程序,通过浏览器、短信消息、Maps、NFC、二维码等形式启动。待更新

    4. UITableViewCell

    IOS 14要求使用[cell.contentView addSubview],不推荐使用[cell addSubview]了,有人说会遮挡视图,目前没复现,点击也还正常,但是保不齐以后不让用,还是建议用contentView add吧。

    5. KVC 不允许访问 UIPageControl的pageImage

    新增了API:preferredIndicatorImage设置image

    6. 相册新增选择部分照片权限类型

    PHAuthorizationStatusLimited,会在弹窗相册权限时增加一个“选择照片”选项,点击可以勾选部分照片供该APP使用。
    如果用户选择了部分照片,那么重启APP后再用到相册权限依然会弹窗提醒选择更多照片。
    可以在Info.plist中设置“PHPhotoLibraryPreventAutomaticLimitedAccessAlert”为YES,来阻止弹窗反复弹出。
    也可以在代码中配置在合适的位置弹窗:

    [[PHPhotoLibrary sharedPhotoLibrary] presentLimitedLibraryPickerFromViewController:self];
    
    

    7. 相机和麦克风

    iOS14 中 App 在使用相机和麦克风时右上角会有绿点(相机)和黄点(麦克风)提示,无法隐藏。

    8. 读取剪切板会弹提示

    读取剪切板内容时,会有toast提示,从顶部弹出,例如:手机淘宝 - 粘贴自:QQ

    相关文章

      网友评论

          本文标题:iOS14适配

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