AKAlertView
AKAlertView copied to clipboard
[小木轮]
AKAlertView
Alert View
####.效果图片
####特性:
>1.适配屏幕宽高度,自动计算高度内容
>2.使用系统高斯模糊特效 支持iOS7及以上
####用法:
#import "AKAlertView.h"
AKAlertView* alertView= [AKAlertView alertView:@"title" des:@"description" type:AKAlertSuccess effect:AKAlertEffectDrop sureTitle:sureTitle cancelTitle:cancelTitle];
[alertView show];
typedef NS_ENUM(NSInteger,AKAlert){
AKAlertSuccess, //success style
AKAlertFaild, //faild style
AKAlertInfo, //info style
AKAlertCustom //custom head image
};
typedef NS_ENUM(NSInteger,AKAlertEffect){
AKAlertEffectDrop, //alertView droping on the screen
AKAlertEffectFade //alertView Fading on the screen
};