first commit

This commit is contained in:
wu736139669
2015-06-29 13:51:21 +08:00
commit 91d51d0723
3 changed files with 123 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
//
// ASHUIAlertView.h
// Ash_AWord
//
// Created by xmfish on 15/6/29.
// Copyright (c) 2015年 ash. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ASHUIAlertView : UIAlertView
/**
* 弹出提示框
*
* @param title <#title description#>
* @param message <#message description#>
* @param block <#block description#>
* @param cancelButtonTitle <#cancelButtonTitle description#>
* @param otherButtonTitles <#otherButtonTitles description#>
*
* @return <#return value description#>
*/
+ (id)showAlertWithTitle:(NSString *)title
message:(NSString *)message
completionBlock:(void (^)(NSUInteger buttonIndex, ASHUIAlertView *alertView))block
cancelButtonTitle:(NSString *)cancelButtonTitle
otherButtonTitles:(NSString *)otherButtonTitles, ...;
@end