Reputation: 1286
I am a newbie to iOS development. I am trying to import and use a static library from a private vendor. I imported the library correctly as given in various tutorials ( I added the library in header search path, library search path, added in Linked frameworks and libraries ). But the issue is I do not know how to use them. The ".a" files do not have any headers. Can somebody say how to use them?
I tried importing them like this. But all of them gave file not found error.
import "abcdef.a"
import <abcdef.h>
Upvotes: 0
Views: 1475
Reputation: 12951
.a
file (never do so)Build Phases
in the Link Binary With Libraries
#import "MyClass.h"
Upvotes: 2