美文网首页iOS 深度好文iOS 14
iOS14适配+WWDC2020汇总(持续更新中...)

iOS14适配+WWDC2020汇总(持续更新中...)

作者: 双鱼子曰1987 | 来源:发表于2020-12-01 13:50 被阅读0次

    一、WWDC

    1、在 2020 年中,Apple 针对 Objective-C 做了三项优化
    • 类数据结构变化:节约了系统更多的内存。
      大约 10% 的类实际会存在动态的更改行为,如动态添加方法,使用 Category 方法等。因此,我们能可以把这部分动态的部分提取出来,我们称之为class_rw_ext_t,可以把 90% 的类优化为Clean Memory,在系统层面,取得效果是节省了大约 14MB 的内存,使内存可用于更有效的用途。
    • 相对方法地址:节约了内存,并且提高了性能。
    • Tagged Pointer 格式的变化:提高了 msgSend 性能。
      WWDC笔记 - Advancements in the Objective-C Runtime

    二、iOS14

    1、UIDatePicker 样式错误问题
    UIDatePicker 增加了preferredDatePickerStyle,需要设置preferredDatePickerStyle = UIDatePickerStyleWheels;才会和以前一个样式。并且现在对frame的宽高设置已经不生效了。会采用系统默认的宽高。

    2、UIImageView 在未渲染的情况下
    layer.contents 赋值逻辑变化~

    UIImageView *imageViewMask = [[UIImageView alloc] initWithImage:image];
    imageViewMask.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
    self.layer.mask = imageViewMask.layer;
    

    修改为:

    UIImageView *imageViewMask = [[UIImageView alloc] initWithImage:image];
    imageViewMask.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
    self.layer.mask = imageViewMask.layer;
    
    if (@available(iOS 14.0, *)) {
        if (!imageViewMask.layer.contents) {
            imageViewMask.layer.contents = (__bridge  id)image.CGImage;
        }
    }
    

    3、iOS14上,通过cell.addSubview的方法无响应
    看一下图层结构,不设置cell.contentView.backgroundColor,这个contentView会在最上层盖着。
    因为iOS14的contentview变成懒加载了,如果不设置contentview的属性那么他会在最后加载,自然会覆盖在所有cell的上面。

    • 全局解决方案:使用Runtime的Method swizzling的黑魔法,全局hook UITableViewCellinitWithStyle:reuseIdentifier:,这里面设置self.contentView.hidden = self.contentView.hidden; 或者 self.contentView.backgroundColor = self.contentView.backgroundColor;

    ios14 自定义cell上按钮点击没有反应

    • iOS14.4上在CollectionView上面也发现改问题,处理逻辑同上

    4、模糊定位和精准定位
    iOS14:定位的授权配置总结

    5、idfa权限获取以及无法获取的解决方案

    6、iPhone12系列手机的判断。

    7、iPhone12:视频有声音、画面蓝屏的问题分析解决

    8、相册权限的适配。

    9、KVC
    iOS14不允许以KVC形式访问 UIPageControl的pageImage、_currentPageImage
    在iOS14下设置UIPageControl的pageimage,会导致奔溃,不能再用了。

    10、复制粘贴板
    [UIPasteboard generalPasteboard] 获取粘贴板需要控制下.包括第三方SDK,防止每次打开APP,都会提示粘贴信息.

    11、UICollectionView滚动失效
    iOS14上滚动到指定Item的接口失效scrollToItemAtIndexPath:atScrollPosition:animated:,具体原因有待研究。
    临时解决方案如下:

    if (@available(iOS 14, *)) {
        UICollectionViewLayoutAttributes *attributes =
        [self.collectionViewFlowLayout layoutAttributesForItemAtIndexPath:indexPath];
        self.collectionView.contentOffset = attributes.frame.origin;
                
    } else {
        [self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally | UICollectionViewScrollPositionCenteredVertically animated:animated];
    }
    

    12、本地网络(Local Network)权限弹框
    在iOS14里,Apple 开始对本地网络权限做出了更加严格的限制。如果未在plist文件中声明
    NSLocalNetworkUsageDescription说明app对于本地网络的使用情况,将会被拒。

    // 找出使用本地网络的第三方SDK:
    grep -r SimplePing .
    

    参考:
    https://www.jianshu.com/p/f34e2a829d3c
    https://www.sohu.com/a/405536886_115785?trans=000019_share_sinaweibo_from
    https://blog.csdn.net/wsyx768/article/details/112462259
    https://developer.apple.com/videos/play/wwdc2020/10110/

    相关文章

      网友评论

        本文标题:iOS14适配+WWDC2020汇总(持续更新中...)

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