Convert Objective-C code to java code

Is there any tool to convert C object code to java?

+4
source share
3 answers

You can try the following: Objc2j

+5
source

Checkout is apportable . This is much better than trying to convert the source code to Java. Just leave it in Objective-C and use Apportable to run your code on other platforms.

+1
source

You should try O2J - Objective-C Java source code translator from the Mac App Store. This is a cheap and very efficient way to generate native Java code from your Objective-C.

+1
source

Source: https://habr.com/ru/post/1345826/


All Articles