I added a shared library (.so) to target in the Build Phases.How to use the functions in the library? Including the headers in the Controllers is fine. or do I need to explicitly load the library.Please let me know how to use .so in Objective C.
Asked
Active
Viewed 1,263 times
0
-
1If you want to submit your App to the App Store then you won't pass review if it loads custom dynamic libraries. – trojanfoe Apr 03 '13 at 10:45
-
@trojanfoe: You mean the only option is static libraries! – Ram Apr 03 '13 at 10:48
-
Yes that is your only option. – trojanfoe Apr 03 '13 at 10:49
-
Dynamic libs are not supported by Apple in iOS http://stackoverflow.com/questions/4733847/can-you-build-dynamic-libraries-for-ios-and-load-them-at-runtime – Ram Apr 03 '13 at 10:58
-
Well they are (the Apple-supplied ones), just not custom ones. – trojanfoe Apr 03 '13 at 11:11