Xcode Static Library Template... build doesn't contain headers?
So I'm using the Static Library template included in Xc开发者_运维技巧ode. Right now just trying to build a simple template to see how static libraries really work.
Anyways in my static library I have two classes: mylibrary (.h/.m) - This is simply an NSObject modalView (.h/.m) - This is a UIViewController
The problem though is when I build the static library. The project builds the mylibrary.a file... however there is no "Headers" folder in the output. This means that when I add the library to my other project it gives "undefined" errors because it can't find the .h file for myLibrary.
Any ideas on how to fix this? Thanks
You need to drag .h files to the new project, along with .a file
I have a bunch of scripts here:
https://github.com/drekka/dUsefulStuff/tree/master/scripts
Which I use to build static libraries and frameworks. You might find them useful in helping to assemble your library. The main (controller) build script is here
https://github.com/drekka/dUsefulStuff/blob/master/build.sh
精彩评论