TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
RTToastMessage
is a quick and easy way to show toast messages. It's a queue based FIFO toast.
It supports various customizations:
Show a simple toast message
[RTToastManager sharedManager] showMessageWithText:@"Simple toast"];
Configure a toast
RTToastMessage *message = [[RTToastMessage alloc] initWithText:@"Dog"];
message.image = [UIImage imageNamed:@"dog.png"];
message.backgroundColor = [UIColor whiteColor];
message.textColor = [UIColor darkTextColor];
message.transitionType = RTToastMessageTransitionFlipFromLeft;
[[RTToastManager sharedManager] showMessage:message];
This code is distributed under the terms and conditions of the MIT license.