我想在iOS中实现一个非阻塞,透明的警报,我可以在其中插入一条消息,类似于Tweetbot等应用程序。优选地,这些警报应该具有不同的错误和信息视图,并且应该从屏幕顶部向下设置动画。我可以使用哪些库创建这样的警报?非常感谢。
答案 0 :(得分:2)
添加显示文字的子视图
- (void) showOverlayMessage
{
// add subview with animation from top
}
- (void) hideOverlayMessage
{
// remove subview with animation from top
}
// 1-2秒后调用hideOverlayMessage
[self performSelector: @selector(hideOverlayMessage) withObject: nil afterDelay: 2];
答案 1 :(得分:0)
查看https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets BlockAlerts非常推特。
答案 2 :(得分:0)
我个人认为GCDiscreetNotificationView库很有用。但是,它目前不支持不同的信息和错误样式。