One of the UI component that I like in Android is the Toast Notification. It is subtle, non-intrusive and fades away automatically. You simply call:
Toast.makeText(context, “Hello Toaster (:”, 5).show();
iPhone does not have an equivalent. It does have an Alert, but [...]
