美文网首页iOS开发资料收集区
Xcode10再坑之framework not found Co

Xcode10再坑之framework not found Co

作者: iHTCboy | 来源:发表于2019-03-18 23:43 被阅读140次

    1、前言

    之前升级 Xcode10 后,给别人的SDK会报错:

    ld: framework not found CoreServices for architecture armv7 
    

    为什么 iOS SDK 拖入项目中就报错"ld: framework not found IOSurface for architecture arm64"?

    其实,之前的文章已经说过解决方案: Xcode8报错:"Framework not found IOSurface for architecture arm64"或者 "Framework not found FileProvider for architecture x86_64/arm64". | iHTCboy's blog

    当时,反复确认后,网上有些第三方的SDK提供商说升级Xcode10吧!!!慌张~ 你们就只能让别人升级啦!解决不了,重启,升级!但,NO,最后发现是新项目是使用 CocoaPods 导致的坑,一个地方进2次,还真不简单!

    其中,看到有赞云这样说:

    20190315-youzanyun-sdk.png

    我只能说,坑的一个算一个,第三方用户就是这样,希望技术真的改变生活!包括技术的生活!

    2、问题原因

    因为我们新的项目使用 CocoaPods 组件化,所以最后打SDK的项目是CocoaPods集成的,问题就出在这里!上一个文章说到解决方法很简单:(Xcode8报错:"Framework not found IOSurface for architecture arm64"或者 "Framework not found FileProvider for architecture x86_64/arm64". | iHTCboy's blog

    Build Settings 中 Link Frameworks Automatically 把默认Yes 改成 No

    但是,如果用 CocoaPods 集成,默认是 Yes!!! 尼玛!!!

    知道原因,解决就好办啦!但是,突然想到,以后 pod installpod update 时,难道要人工的设置一次??? 不可能!不可能!不可能!

    最后,还是在 CocoaPods 官方文档找到答案 CocoaPods Guides - post_install

    Podfile 文件最后,添加下面代码:

    post_install do |installer|
        installer.pods_project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['CLANG_MODULES_AUTOLINK'] = 'NO'
            end
        end
    end
    
    

    这个是一个勾子hook,在pod安装完成前,允许更改配置或做些别的事件!

    3、总结

    这个问题,2次进坑,解决的问题本质就是一个,只是自己开始不相信!所以,遇到问题,还是要学会找到原因,只是通往答案的道路各不相同,只要不放弃,不抛弃,一定能为大家提供优质的服务!相信科技的力量!不然,只能让别人升级环境来适配你,这可不好哦!

    参考

    • 如有疑问,欢迎在评论区一起讨论!
    • 如有不正确的地方,欢迎指导!

    注:本文首发于 iHTCboy's blog,如若转载,请注来源

    相关文章

      网友评论

        本文标题:Xcode10再坑之framework not found Co

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