METoast 介绍
Metoast 实现了类似 Android 的 Toast 风格的消息提示,实现了先进先出的消息队列。

示例代码:
MetoastAttribute *attr = [[MetoastAttribute alloc] init];
attr.location = MetoastLocationMiddle;
[Metoast setToastAttribute:attr];
[Metoast toastWithMessage:@"On the middle of the screen!"];
[attr release];
METoast 官网
https://github.com/JamesQianLee/METoast