I have a static Objective-c library I’d like to use with my Xojo project (Mac OS). I have experience with .dylibs, but not static libs. Is it possible, and if so how? I’ve searched the forum but haven’t found much.
You can build the static library into a shared library and use it with declares.
Or you can build it into a plug-in and use this way.
But you can’t use static libraries directly as far as I know.
Thank you.