how to add PlausibleDatabase.framework to Xcode 4.1
I've already add PlausibleDatabase.framework to Xcode4.1 by following steps:
- my project -- build phases
- Link binary with Libraries
- click "+"
- add other
- choose where the fr开发者_JAVA百科amework is.
And I tried to
#import "PlausibleDatabase.h"
got error 'PlausibleDatabase.h' file not found
And I checked the loaded framework, the header file is there! Anything wrong?
should import like this:
#import "PlausibleDatabase/PlausibleDatabase.h"
精彩评论