tags:

views:

66

answers:

1

Hi Guys I am new iPhone programer. how to add dynamic libraries in iphone xcode, I want to add the lib: "libcrypto.dylib" ( in /usr/lib ). Please guide me.

Thank you.

A: 

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

chpwn