I am interested in using Firemonkey for producing an iOS app. There are several native C libraries I would like to use in this application. I know that iOS does not allow for dynamic link libraries, but is there a way to use static libraries in this firemonkey iOS app?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes, you can use C static libraries to link with Firemonkey iOS appli using xcode. I did it using Xcode outside RADStudio X2. With RADStudio I generated xcode project. On the mac I openned the xcode project and added :
I created static library project in xcode (named my_c_lib) with one C file containing :
I suppose that in the same manner you can use already compiled static libs. |
|||
|
Here is an iOS application I made: Unit1.pas is generated by XE2:
and the C file tst1.c is:
|
||||
|
|