iOS 13,14问题总结2021

作者: RiberWang | 来源:发表于2021-01-29 11:21 被阅读0次
    1. 无法添加master源

    原因:cocoapods 新版1.9 新版的 CocoaPods 不允许用pod repo add直接添加master库了,可用清华镜像 repo更新
    解决办法:

    • 对于旧版的 CocoaPods 可以使用如下方法使用 tuna 的镜像:
    pod repo remove master // 移除master源
    pod repo add master https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git // 添加清华源
    pod repo update // 更新资源库
    
    • 新版的 CocoaPods 不允许用pod repo add直接添加master库了,但是依然可以:
    cd ~/.cocoapods/repos  // 进入pods资源库
    pod repo remove master // 移除master源
    git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master // 克隆清华源
    

    最后进入自己的工程,在自己工程的podFile第一行加上(也可以不加 执行pod update操作后 会自动加上):

    source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
    

    清华大学开源软件镜像站

    2. github打开和克隆很慢

    原因:下载链接指向了Amazon的服务器,从国内访问Amazon非常慢,所以总是下载失败。
    解决办法:更改host文件,使该域名指向香港的服务器
    域名查询地址
    https://www.ipaddress.com

    - vim编辑
    sudo vi /etc/hosts
    1. 点击“i”,插入
    140.82.114.4    github.com
    199.232.69.194  github.global.ssl.fastly.net
    2. 按“esc”,保存“:wq”
    3. 刷新DNS缓存(我刷新缓存 我看网上说需要)
    sudo killall -HUP mDNSResponder
    sudo killall mDNSResponderHelper
    sudo dscacheutil -flushcache
    
    - 直接修改
    1. 点击桌面空白区域,command+shift+G进入文件夹
    2. 输入'/etc/',点击前往。
    3. 点击文件按'H'键,找到hosts文件夹,拖拽到桌面
    4. 添加下面2个域名到文件里,保存后拖拽到第二步的文件夹里(此处会提示输入电脑密码)
    140.82.114.4    github.com
    199.232.69.194  github.global.ssl.fastly.net
    185.199.108.133       githubusercontent.com
    185.199.109.133       githubusercontent.com
    185.199.110.133       githubusercontent.com
    185.199.111.133       githubusercontent.com
    

    亲测有效,github里的图片也能打开了。而且github的打开速度确实快了。

    3. 编译找不到头文件

    Failed to emit precompiled header for bridging header
    升级Xcode 12之后一直报这个错误,目前还没找到原因。各种方法都试了,还是不行,有知道的可以留言!

    4. Xcode12 编译失败

    clang: error: unable to execute command: Segmentation fault: 11
    clang: error: clang frontend command failed due to signal (use -v to see invocation)

    clang: error: unable to execute command: Segmentation fault: 11
    clang: error: clang frontend command failed due to signal (use -v to see invocation)
    Apple clang version 12.0.0 (clang-1200.0.32.29)
    Target: arm64-apple-ios12.0
    Thread model: posix
    InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
    clang: note: diagnostic msg: PLEASE submit a bug report to http://developer.apple.com/bugreporter/ and include the crash backtrace, preprocessed source, and associated run script.
    clang: note: diagnostic msg: 
    ********************
    
    PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
    Preprocessed source(s) and associated run script(s) are located at:
    clang: note: diagnostic msg: /var/folders/06/7gpgdcqn3mj5f36r2667knvr0000gn/T/ZNBSmallVideoCollectionViewCell-6735b0.m
    clang: note: diagnostic msg: /var/folders/06/7gpgdcqn3mj5f36r2667knvr0000gn/T/ZNBSmallVideoCollectionViewCell-6735b0.cache
    clang: note: diagnostic msg: /var/folders/06/7gpgdcqn3mj5f36r2667knvr0000gn/T/ZNBSmallVideoCollectionViewCell-6735b0.sh
    clang: note: diagnostic msg: Crash backtrace is located in
    clang: note: diagnostic msg: /Users/Riber/Library/Logs/DiagnosticReports/clang_<YYYY-MM-DD-HHMMSS>_<hostname>.crash
    clang: note: diagnostic msg: (choose the .crash file that corresponds to your crash)
    clang: note: diagnostic msg: 
    

    这个问题很无奈,只好重新退回Xcode 11版本了。

    2021.1.29
    2021.1.28 回归iOS开发 坐标还在商丘


    4. Xcode12 编译失败

    终于找到原因了,这个问题是自定义Model里面的一个变量导致的,变量名为height。估计是iOS 14之后NSObject里面增加了该属性。感觉有点坑啊!
    2021.2.24

    其他问题欢迎补充

    相关文章

      网友评论

        本文标题:iOS 13,14问题总结2021

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