What is the performance difference between native 2d drawing api and html5 canvas API for iphone?
I have non-interactive 2d animation application using html5 canvas and it works great under desktop browsers开发者_如何学JAVA but performance is miserable under iphone. How does the performance of iphone native Core Animation vs html5 canvas compare? Since the API is radically different before I spend all the efforts I am posting this question. Is there alternative native iphone API that is very similar to html5 canvas for 2d animations applications?
From experience: NO.
Mobile Safari has no real HTML Canvas Support, hence it's unbelievable slow. Native Stuff with Core Anmiation runs extremly well and won't have any troubles.
精彩评论