When I write Android apps, I love the Toast feature. Is there a way to get this kind of set and forget popup message in iPhone development using MonoTouch (C# .NET)?
|
Check this out: https://github.com/ecstasy2/toast-notifications-ios Edit: The project has moved to github so i update the link. |
|||||||||||
|
|
MonoTouch Toast Version here. Inspired by Android. To call it,
Enum File:
ToastSettings File:
Main Toast Class:
|
|||||||||||
|
|
Here's my version: http://github.com/scalessec/toast I think it's simpler to use because it's implemented as a obj-c category, thereby adding the makeToast methods to any instance of UIView. eg:
|
|||
|
|
Are you looking for something like |
|||||||||||
|
|
You might be after Local Notifications, pretty sure they allow you to set a time, I think in epoch time to be fired off. Don't think there is a way to hide them though. I might be misunderstanding your question though cause I'm unfamiliar with Toast. |
|||
|
|
|
You can use this link for objective-c code for Toast http://code.google.com/p/toast-notifications-ios/source/browse/trunk/ While this link for its usage http://code.google.com/p/toast-notifications-ios/wiki/HowToUse which could be like any one of the below samples
|
|||
|
|
|
I have added a little modification to the toast class that handles rotation of the display.
|
|||
|
|
|
I created a new repo on github with a class to do iOS toast-style alerts. I didn't like the one on code.google.com, it didn't rotate properly and wasn't pretty. https://github.com/esilverberg/ios-toast Enjoy folks. |
|||

