Hacker News new | ask | show | jobs
J2ObjC: A Java to iOS Objective-C translator (google-opensource.blogspot.com)
25 points by dweis 5028 days ago
1 comments

what about library support? are libraries i use in java translated as well? performance?
It appears to work on Java code, not JVM bytecode (similar to GWT), so you'd have to decompile/disassemble the JVM bytecode first.

IT appears to follow GWT in other ways as well such as JSNI-ish interface (can even combine JSNI and native ObjC) and some optimized runtime classes for the ObjC environment.