OBAlertView -


MIT
iOS
Objective-C

软件简介

OBAlertView 是一个全屏的提醒信息视图控件,灵感来自 iOS 7 的音乐应用。

使用方法:

OBAlert *alert = [[OBAlert alloc] initInViewController:self];
[alert showAlertWithText:@"You can download music from the iTunes Store" 
               titleText:@"No Content" 
              buttonText:@"Store" 
                   onTap:^{
    [alert removeAlert];
}];