Reputation: 13
I have to develop an iPhone app and I have to use some java libraries, is there a way to do it?, or what options do I have?, I thought maybe to use this libraries with server calls (using web services maybe) but i don't know if it is possible either. Thank you!
Upvotes: 1
Views: 399
Reputation: 13057
Currently there is no way to use Java libraries directly on the iPhone. You need to find some Objective-C equivalent.
Your idea to use server-side code and call it from the iPhone sounds more reasonable, however, you need to consider the drawbacks of this solution:
Upvotes: 1