Weak link framework

前端 未结 2 1592
小鲜肉
小鲜肉 2021-01-05 08:50

Due to the last release of the adMob package, I have added the MessageUI framework to my project. As I wish to deploy my application to 2.x OS devices, I have weak linked M

相关标签:
2条回答
  • You are getting that error because you are building against a version of the SDK that does not implemement the MessageUI framework.

    What you need to do is to build for iPhone OS 3.0, but in the build settings for your target set the iPhone OS Deployment Target to iPhone OS 2.0 (or whatever minimum version you'd like to support with your final application). This way, you weak-link against the newer framework, but can still deploy the application to older devices.

    0 讨论(0)
  • 2021-01-05 09:18

    This answer is missing important info - You also have to manually set the specific framework to link as "weak" instead of "required" :

    in xcode - right click on the TARGET (!!!!) -> get info -> in the "General" tab, in the linked libraries list, you have a column on the right side titled "type".

    The change needs to be performed there for frameworks that don't exist in previous versions of IOS.

    0 讨论(0)
提交回复
热议问题