MBAlertView 是一个有趣且简单的基于-blocking 的 alert 和 HUD 库,用于 iOS,如 Notestand 中所见。
有两个工厂方法可以帮助您开始
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];
[MBHUDView hudWithBody:@"Wait." type:MBAlertViewHUDTypeActivityIndicator hidesAfter:4.0 show:YES];
您可以在易于遵循的演示中了解更多信息。
MBAlertView 在 MIT 许可证下可用。