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

I'm working on building an iPhone app with Titanium Mobile 1.0 and I see that it compiles down to a native iPhone binary. How does this work? Seems like it would take a lot of heavy lifting to analyze the JavaScript code and do a direct translation into Objective-C without having a superset language like 280 North's Objective-J and Cappuccino.

share|improve this question
4  
it is open-source. why don't you take a look under the hood ? – Gaby aka G. Petrioli Mar 14 '10 at 22:27
11  
@Gaby I figure if I'm curious then so are others so what better way to spread information than by asking publicly? – Darrell Brogdon Mar 14 '10 at 22:44
2  
@Darrell, i agree completely.. i was not trying to bash you, just thought that the fastest route (if you needed specifics) would be to check the code directly.. apologies if it came out the wrong way .. – Gaby aka G. Petrioli Mar 14 '10 at 23:00
@Gaby No worries. I don't disagree with you. But my JS chops are better than my ObjC chops so... :) – Darrell Brogdon Mar 14 '10 at 23:02
1  
small point: Objective-J is a superset of javascript – cobbal Mar 17 '10 at 17:10
show 2 more comments

5 Answers

up vote 103 down vote accepted
+100

Titanium takes your Javascript code, analyzes and preprocesses it and then pre-compiles it into a set of symbols that are resolved based on your applications uses of Titanium APIs. From this symbol hierarchy we can build a symbol dependency matrix that maps to the underlying Titanium library symbols to understand which APIs (and related dependencies, frameworks, etc) specifically your app needs. I'm using the word symbol in a semi-generic way since it's a little different based on the language. In iPhone, the symbol maps to a true C symbol that ultimately maps to a compiled .o file that has been compiled for ARM/i386 architectures. For Java, well, it's more or less a .class file, etc. Once the front end can understand your dependency matrix, we then invoke the SDK compiler (i.e. GCC for iPhone, Java for Android) to then compile your application into the final native binary.

So, a simple way to think about it is that your JS code is compiled almost one to one into the representative symbols in nativeland. There's still an interpreter running in interpreted mode otherwise things like dynamic code wouldn't work. However, its much faster, much more compact and it's about as close to pure native mapping as you can get.

We're obviously still got plenty of room to improve this and working on that. So far in our latest 1.0 testing, it's almost indistinguishable from the same objective-c direct code (since in most cases it's exactly mapped to that). From a CompSci standpoint, we can now however start to optimize things that a human really couldn't easily do that - much like the GCC compiler already does today.

share|improve this answer
2  
and yes, it works very well. :) – jhaynie Mar 18 '10 at 16:58
Wow, this really sounds great. Thanks for the clarification. I never imagined that so much effort would have been put into AppCelerator. Keep up the great work! – MrMage Mar 21 '10 at 23:40
11  
Did I get this right that there is no Javascript->Objective-C and Javascript->Java conversion taking place but this is directly to native code? So there is no way to have a look at the created Objective-C or Java code? – Jan P. Jul 7 '10 at 13:47
1  
Is the compilation done on Titanium's server? I saw that Wikipedia en.wikipedia.org/wiki/Appcelerator_Titanium – adib Apr 8 '11 at 1:52
1  
@djaqeel clojure,scala,jruby,nashorn – gtrak Feb 2 at 23:44
show 3 more comments

If I package my simple ample code I get a ~80MB gzip archive (original Code ~1kB). Within the package - among others - you can find my source html and js files. There are also a lot of libraries (ssl for example) shipped with the package (because you can have low-level access to a lot of things within this framework).

I think that they take your code and wrap around some kind of interpreter software and libraries. In my case it would be like if I pack my html and js code next to a tiny browser that only displays my site.

How ever, as long as the code works on every supported system in the same way its a nice thing.

share|improve this answer
4  
When I open the .ipa that Titanium creates I see what appears to be a standard compiled app. None of the HTML or JavaScript code can be found. – Darrell Brogdon Mar 17 '10 at 16:35

Like jhaynie said, the application is compiled into native code, but there is still an interpreter in-place to run some javascript, which allows the application to be very dynamic.

http://www.itwriting.com/blog/4198-is-appcelerator-titanium-native-and-what-does-native-mean-anyway.html/comment-page-1#comment-535303

share|improve this answer

My question is why dont we write a C++ code or framework which will, at. Run time, load appropriate library (preconpiled and which is designed keeping our framework in mind) for ios or android or BB or symbian ?

Please clarify on this if i am wrong.

Thanks Regards, Dhanesh

share|improve this answer

I think that Appcelerator just takes all your HTML and JavaScript code and packs it into the executable binary. This is similar to Adobe's Flash CS5, which takes all the flash resources and places them into the binary, not in the App bundle. Flash does, however, really compile the ActionScript code - in contrast to Appcelerator, which just uses the JavaScript code and Apple's UIWebView (so I think at least).

The corresponding Wikipedia article also leads me to this conclusion, since it states that they support jQuery, Prototype etc. out of the box. On the other hand, it claims that the AppCelerator cross-compiler was compiled using itself, which would be evidence of a native compiler. Now I am confused...

share|improve this answer
3  
Join the club. :) – Darrell Brogdon Mar 17 '10 at 17:41
8  
In the pre-1.0 of Titanium we used UIWebView. However, at 0.9 we switched to using compiled JS and direct to KJS and native bindings. You can still use HTML/CSS/JS with Ti.UI.createWebView to create a UIWebView instance for rending HTML5 content, but this is just another native view in Titanium. – jhaynie Aug 20 '10 at 17:05
Assuming you compile JS but what do you do with GUI? How HTML and CSS are compiled and drawn? – Umair Ashraf Jul 9 '11 at 11:19
1  
For styling, Appcelerator is more like objective-c than front-end web development. Example: var l = Titanium.UI.createLabel({ text:'Shake your phone', top:10, color:'#999', height:'auto', width:'auto' }); – Pierre Mar 7 '12 at 17:50
@UmairAshraf: It doesnt use HTML and CSS for creating UI at all. everything is Javascript. – Amogh Talpallikar Jul 19 '12 at 9:45
show 1 more comment

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.