Simple Class that adds an easy option to create android-like toasts for iOS.
- All the normal settings (size, color. margin etc...) can be changed via the h file in one of the #define lines.
To use it define a new Toast object with toastWithMessage: method (no alloc init needed), then call showOnView: from the Toast object. Example:
Toast *mToast = [Toast toastWithMessage:@"Let's have a toast"];
[mToast showOnView:self.view];