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. After adding it to Build Phases/ Link Binary with Binaries and Embed Frameworks I am able to compile successfully, but I get an error stating (yes it says success and then error :S):
No such module 'Result'
On the import:
import Result
func serverRequest() -> Result<String, NSError> {
...
}
The build is able to Run and Compile, but I am not able to cmd+click on Result, for example.
Edit 1: On Xcode 6.3.2 it works as expected.
Edit 2: Opened a radar: 21588771
Neil's answer is right, but there a very subtle difference how you set the
FRAMEWORK_SEARCH_PATHS
. So after adding it only toBuild Phases/ Link Binary with Binaries
, my initial setup was like this:The above is the wrong setup and won't work. The working one below: