English 中文(简体)
Titanium vs The Native Tools
原标题:

I m still checking everything out.

I m wondering what the limitations are if we develop the app using Titanium. What cannot be done using Titanium, for iPhone and for Android? What things can only be done using only the the native tools?

I heard that performance could be an issue. How bad is this going to be?

Thank you in advance. :)

问题回答

Last I checked Alarm Manager was not available for the Android OS. I also found the Titanium compiler to be buggy and crash for arcane reasons.

The only missing feature I ve found so far is that there s no access to the device s secure storage API (e.g. Keychain on iPhone). If you re looking to write something that accesses a web service (which lots of apps are), you ll probably want a safer way of storing creds than in the app s Properties.

This answer is now incorrect - Apple have reverted this decision.

Well, one potential problem with using Itanium is that, according to the new Apple developer agreement, you cannot develop for the iPhone using anything other than C, C++ or Objective C. Specifically you cannot use any third party tool to develop a native application. For more information see these sites for some more details, or google for "apple iphone third party compiler".

Here is a statement from the CEO of Appcelerator about the announcement and what it might mean. Long story short, at the moment no-one seems to know. Definitely out is the old Flash→iPhone compiler from Adobe, but some people believe that there are shades of grey in the middle.





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签