Use Cocoapods with an App Extension

前端 未结 4 1244
情深已故
情深已故 2020-12-02 05:00

I\'m trying to build a photo App Extension in Xcode 6 Beta-6 that uses cocoapods libraries. The bridging header that Xcode creates for the photo extension can\'t see anythin

4条回答
  •  渐次进展
    2020-12-02 05:34

    The proper way to do this is to update your podfile to add just 1 line :

    link_with 'yourApp', 'yourAppExtension'
    

    and a pod update should resolve the issue.

提交回复
热议问题