Link Errors with Parse.framework iOS

前端 未结 3 1412
春和景丽
春和景丽 2020-12-08 22:53

I tried importing the parse framework in my project. I made sure it is liked with my project and I couldn\'t find anything about whether it is \'arc sensitive\' or not. My

相关标签:
3条回答
  • 2020-12-08 23:19

    Make sure you link against the SystemConfiguration and the Security framework in your project. See this question for more details. As Hector pointed out in the comments, all of the required frameworks for Parse can be found in the iOS Quick Start Guide.

    • AudioToolbox.framework
    • CFNetwork.framework
    • CoreGraphics.framework
    • CoreLocation.framework
    • libz.1.1.3.dylib
    • MobileCoreServices.framework
    • QuartzCore.framework
    • Security.framework
    • StoreKit.framework
    • SystemConfiguration.framework
    0 讨论(0)
  • 2020-12-08 23:28

    Add MobileCoreServices.framework from your project in addition to these frameworks

    -Accounts.framework

    -AudioToolbox.framework

    -CFNetwork.framework

    -CoreGraphics.framework

    -CoreLocation.framework

    -libz.dylib

    -MobileCoreServices.framework

    -QuartzCore.framework

    -Security.framework

    -Social.framework

    -StoreKit.framework

    -SystemConfiguration.framework

    0 讨论(0)
  • 2020-12-08 23:36

    I had to add "$(inherited)" to the Framework Search Paths in Build Settings to get it work.

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