carthage version
: 0.16.2xcodebuild -version
: Xcode 7.3.1--no-build
? Don't know--no-use-binaries
? Don't know--use-submodules
? Don't knowCartfile
github "mutualmobile/MMWormhole" ~> 2.0.0
Carthage Output
$ carthage update
*** Fetching MMWormhole
*** Checking out MMWormhole at "2.0.0"
*** xcodebuild output can be found in /var/folders/qh/1pzf72wj3dqd2c14dfsdh39r0000gn/T/carthage-xcodebuild.nddzqS.log
*** Building scheme "MMWormhole-Mac" in MMWormhole.xcodeproj
*** Building scheme "MMWormhole-iOS" in MMWormhole.xcodeproj
I followed all the steps mentioned in the readme (see screenshots) to use the framework MMWormhole. But when i wanted to import the "MMWormhole.h", i get "File not found".
In StartViewController.c
#import "StartViewController.h"
#import "MMWormhole.h"
I don't know if it's a bug or missing (wrong?) documentation or stupid misinterpreting all this on my side?
But when i wanted to import the "MMWormhole.h", i get "File not found".
Can you show where you've done that?
In StartViewController.c
#import "StartViewController.h"
#import "MMWormhole.h"
You should do as follows: #import <MMWormhole/MMWormhole.h>
or @import MMWormhole;
Most helpful comment
You should do as follows:
#import <MMWormhole/MMWormhole.h>
or@import MMWormhole;