问题
How to invoke(call) ".so" file in xcode? these ".so" files are all writen in standard C.(C99). Anyone help.....
回答1:
Apple uses the file extension ".dylib" for dynamic libraries. They are very similar to ".so" shared-object libraries used in other Unix-like operating systems, and are a cousin to ".dll" dynamic link libraries on Windows.
Most .so libraries are in ELF format (used by Linux and many other POSIX systems) whereas Mac libraries are in Mach-O format. So, they are most definitely incompatible.
来源:https://stackoverflow.com/questions/5201241/how-to-invoke-so-file-in-xcode