“no such module” on Xcode 7 beta 2

后端 未结 2 792
天涯浪人
天涯浪人 2020-12-15 22:18

I saw this question, but I am still unable to import a framework and use it inside Xcode 7 beta 2 (7A121l).

So currently I am trying to use Result, via carthage. Af

相关标签:
2条回答
  • 2020-12-15 22:57

    You need to make sure that FRAMEWORK_SEARCH_PATHS in the xcodeproj includes the path where Result.framework is.

    0 讨论(0)
  • 2020-12-15 23:10

    Neil's answer is right, but there a very subtle difference how you set the FRAMEWORK_SEARCH_PATHS. So after adding it only to Build Phases/ Link Binary with Binaries, my initial setup was like this:

    drwxr-xr-x   8 ruiperes  staff    272 29 Jun 08:35 Playground
    drwxr-xr-x   5 ruiperes  staff    170 29 Jun 22:08 Playground.xcodeproj
    drwxr-xr-x   4 ruiperes  staff    136 29 Jun 00:12 PlaygroundTests
    drwxr-xr-x   4 ruiperes  staff    136 29 Jun 00:12 PlaygroundUITests
    drwxr-xr-x   8 ruiperes  staff    272 29 Jun 08:42 Result.framework
    
    
    FRAMEWORK_SEARCH_PATHS = $(SRCROOT)/**
    

    The above is the wrong setup and won't work. The working one below:

    drwxr-xr-x   4 ruiperes  staff    136 29 Jun 22:07 Frameworks
    drwxr-xr-x   8 ruiperes  staff    272 29 Jun 08:35 Playground
    drwxr-xr-x   5 ruiperes  staff    170 29 Jun 22:08 Playground.xcodeproj
    drwxr-xr-x   4 ruiperes  staff    136 29 Jun 00:12 PlaygroundTests
    drwxr-xr-x   4 ruiperes  staff    136 29 Jun 00:12 PlaygroundUITests
    
    
    FRAMEWORK_SEARCH_PATHS = $(SRCROOT)/Frameworks/
    
    0 讨论(0)
提交回复
热议问题