Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I hope there is somebody that can help me with the following.

Currently i have an Android app that is connected to a C library using JNI. Now i would like to connect my iOS app to that same C library, but how can i call the functions and how can i access the interfaces without JNI?

Hopefully somebody has some good tips or tutorials.

So what i have is an Android App, an iOS App and a C-library adapted to JNI (Java Native Interface). The Android part works. But now i would like to reuse as much as possible but still connect my iOS app to that (or most of that) library. (library are separate header and .c files)

Please help :)

share|improve this question
6  
Objective C is a superset of C, so your C library should Just Work. – Matt Wilding Jul 17 '12 at 15:00
this post might be of interest to you stackoverflow.com/questions/10289890/… – owen gerig Jul 17 '12 at 15:10

2 Answers

up vote 1 down vote accepted

You have two options:

  1. Directly use your library by adding it to project in xcode, assign a library search path, assign header search path and incude headers in .m objective-c source code that use it.
  2. Add all .c files to be compiled and linked by xcode and incude headers in .m objective-c source code that use it.

p.s. if you have used some particular compiler switches you may need to rebuild your libraries to properly target iOS.

share|improve this answer
.mm extension means Objective-C++. A C library should work just fine with .m files – Alex Salom Jul 17 '12 at 15:34
thanks for the point, i'v edited my answer :) – Shebuka Jul 17 '12 at 15:46
The renaming of the files did the trick.. Why is that by the way? Does anybody know? – stackr Jul 18 '12 at 7:02

To elaborate slightly on my comment - unlike Android, iOS apps are built using Objective C with Apple's libraries. Objective C is a superset of C, which means that any valid C code is also valid Objective C code. You should be able to add the source files directly to an iOS project in Xcode, and sprinkle library calls anywhere you want. That means there is nothing like the JNI for iOS (or OSX) development.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.