I'm really worried that when I write iPhone app with Sencha Touch and put it in PhoneGap container the user experience would downgrade.

I particularly see the bottlenecks in:

  • fluency of the screen transitions (animations)
  • fluency of scrolling

Please have in mind that there are lot of 3G iPhones runnin iOS 4.x that made them very slow. I'm discarding the support for the original iPhone.

I, being a trained UI professional, can spot the ST app just by touching few things in it.

Does the shift from Safari to PhoneGap container increases the performance?

Do you have any experience with it?

link|improve this question

64% accept rate
The latest release of iOS4 pretty much dealt with the slowness 3G users were experiencing. After that upgrade my testing 3G is not noticeably slower than it was running iOS 3. – Dan Ray Mar 7 '11 at 14:45
feedback

4 Answers

up vote 9 down vote accepted

I didn't used ST or PhoneGap, but I have used an app built with them. I can say definitely experience about the apps was worst in my 3GS. If you're planning a demo, prototype or test, you're safe with them. However if you want to make an app with competitive UI/UX, you should not. (and even you want to make prototypes, it should be better having some papers)

For your question, the speed. It's definitely not comparable. HTML + CSS is feature-rich, easy to use framework. Of course, it's slow as it's easy. Most of HTML based UI tools uses just UIWebView which is part of native framework. In fact UIWebView is Mobile Safari itself. So the performance of the tools never be better than Mobile Safari. If you want to check performance in animations, just visit http://www.chromeexperiments.com/ with Mobile Safari. I checked none of showcase is running smoothly even many of them does not require strong graphical power.

Native apps are compiled and optimized with cutting edge technologies from professional researches over decades. And there are a lot of options to tweak and tune the code for performance. However a few of them are applied to HTML. Because HTML should guarantee feature-rich, easy-to-use framework always. And most of optimizations (which makes performance improvement) are trade off between feature and simplicity.

However in iOS 4.3 Mobile Safari's performance is improved. But I don't believe it's meaningful for apps with shining UIs.

I saw a considerable graphic framework with JavaScript. In fact, it was game framework with scripting in JavaScript. So it has no relation with HTML or CSS. (I forgot name of it, however it's incomplete yet)

PS.

And there is another big reason for you. It's UI behavior inconsistency. The frameworks mimics basic UI of iOS but incomplete. So it feels uncomfortable like imitated copy brands. However you have no need to care about it if you don't want basic UI.

link|improve this answer
+1 for chrome experiments! – Dai Bok Aug 17 '11 at 8:50
feedback

I found the performance of ST apps to suck even outside of PhoneGap.

link|improve this answer
feedback

At time of writing I would say: Good for mockup and quick app with no high demanding graphics.

But things could change over time as both project (PhoneGap and Sencha Touch) are improving day after day.

And hardware is becoming more and more powerful (iPhone 4, 5, ..., dual arm cpu, ...) so there will be a time where ST and PhoneGap based applications will have performance close to native apps, and this might come after than expected.

So keep an eye on these projects and keep on developing "basic" applications with them to test their performance.

link|improve this answer
2  
If machine is fast enough, anything is possible. And also time passes enough, the machine will become faster. However nobody know the future, and important is present. And even with dual-core ARM ST+PG is still too slow for animations of native apps. Additionally, even it happen, it doesn't mean they're close to native. Because of the reasons mentioned in my answer. It just means only they will gain enough performance to do something that native apps did long time ago. – Eonil Aug 17 '11 at 10:27
feedback

I built a business app with Sencha Touch with and without PhoneGap. Any major performance impact is from Sencha Touch (1.x or 2), not PhoneGap. As Eonil explains, this is because PhoneGap is really using the native browser. I've noticed ST performance "good enough" on iPhone 4 (and I'd argue 3GS with iOS 4.3+; depends on your users' expectations). On Android, only really recent devices are adequate for ST 1.1, but ST 2 has focused on Android performance. I'm sure Sencha will continue to innovate and drive performance because their business depends on it.

If you do use Sencha Touch (or any JavaScript), be sure to use the minified (-debug) version.

I've also built trivial native apps on iOS and Android, and indeed there is no comparison; native is far faster.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.