Reputation: 355
I have question about creating framework manually from static library (for example LibraryName
). I tested this solution:
LibraryName.framework
LibraryName.framework/Headers
and copied headers from source libraryLibraryName.a
to file LibraryName.framework/LibraryName
and it is working under Xcode. But I have question: is it good way to do it like this ?
--
Regards
Adam
Upvotes: 12
Views: 3026
Reputation:
Yes, this is fine. You can even link the static library against its dependencies and create a dynamic library. Both solutions will work.
Upvotes: 3