Cannot synthesize weak property because the current deployment target does not support weak referenc

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

Cannot synthesize weak property because the current deployment target does not support weak referenc_第1张图片

解决:将下面这段复制到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


Cannot synthesize weak property because the current deployment target does not support weak referenc_第2张图片

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

Cannot synthesize weak property because the current deployment target does not support weak referenc_第3张图片

你可能感兴趣的:(Cannot synthesize weak property because the current deployment target does not support weak referenc)