美文网首页
Cannot synthesize weak property

Cannot synthesize weak property

作者: 那根经痛了 | 来源:发表于2017-09-30 10:43 被阅读197次

    问题:我在使用dsBridge第三方框架时出现。

    解决:将下面这段复制到Podfile 的最末尾

    post_install do |installer|

         installer.pods_project.targets.each do |target|

              target.build_configurations.each do |config|

                   config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.2'

              end

          end

    end

    相关链接:https://stackoverflow.com/questions/37160688/set-deployment-target-for-cocoapodss-pod

    相关文章

      网友评论

          本文标题:Cannot synthesize weak property

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