It looks like this question was posted 5 months ago, so it might be too late, but I imported this HelloWorld.java file into NetBeans and then added xmlvm.jar to my library path - soon to see what
CGRect rect = screen.applicationFrame();
and
title.setTextAlignment(UITextAlignment.UITextAlignmentCenter);
Were broken. Fortunately, NetBeans autocomplete asked me to change the first to
CGRect rect = screen.getApplicationFrame();
and second -:
title.setTextAlignment(UITextAlignment.Center);
Then I proceeded to compile the NetBeans project without errors. xmlvm compiled my received bytecode (.class files) into an iPhone / Xcode application, but then I couldn’t get THIS to compile due to inconsistencies in the automatically generated code.
XMLVM looks like a great project, which is very promising, but as it continues to update its code, their documentation lags, which leads to the first failure.
I have no logical explanation for the second.
Warlax Feb 03 '10 at 23:39 2010-02-03 23:39
source share