How do I add dynamic libraries in iphone xcode? I want to add the lib: "libcrypto.dylib" ( in /usr/lib ). 开发者_StackOverflowPlease guide me.
Apple does not support dynamic linking (edit: to your own libraries) on the iPhone. You can, however, statically link OpenSSL and libcrypto. A precompiled static library and example Xcode project using it are found here: http://github.com/x2on/OpenSSL-for-iPhone
精彩评论