MBAlertView 1.1.0

MBAlertView 1.1.0

测试已测试
语言语言 Obj-CObjective-C
许可证 MIT
发布最新发布2014年12月

未声明的所有人 维护。



  • 作者
  • Mo Bitar

MBAlertView 是一个有趣且简单的基于-blocking 的 alert 和 HUD 库,用于 iOS,如 Notestand 中所见。

功能

  • 嵌套 alert 和 HUD
  • 基于-blocking
  • 图片
  • 出色的动画
  • 不使用任何 PNG 文件。一切都是用代码绘制的。

用法

有两个工厂方法可以帮助您开始

alert

MBAlertView *alert = [MBAlertView alertWithBody:@"Are you sure you want to delete this note? You cannot undo this." cancelTitle:@"Cancel" cancelBlock:nil];
[alert addButtonWithText:@"Delete" type:MBAlertViewItemTypeDestructive block:^{}];
[alert addToDisplayQueue];

HUD

[MBHUDView hudWithBody:@"Wait." type:MBAlertViewHUDTypeActivityIndicator hidesAfter:4.0 show:YES];

您可以在易于遵循的演示中了解更多信息。

许可证

MBAlertView 在 MIT 许可证下可用。