UNICORN - iOS
MAlertView.h
1 //
2 // MAlertView.h
3 //
4 // Created by maichi on 2014/11/07.
5 // Version:1.0
6 //
7 
8 #import <UIKit/UIKit.h>
9 
10 // フォントカラー(デフォルトはiOSの標準風 #146dfa)
11 #define MALERT_FONT_COLOR [UIColor colorWithRed:0.078 green:0.427 blue:0.980 alpha:1.0]
12 
13 #define MALERT_INDEX_LEFT_BUTTON 1
14 #define MALERT_INDEX_RIGHT_BUTTON 2
15 
16 @interface MAlertView : UIView
17 
18 + (MAlertView *)showAlertView:(NSString *)title
19  leftButtonTitle:(NSString *)leftButtonTitle
20  rightButtonTitle:(NSString *)rightButtonTitle
21  completion:(void (^)(NSInteger buttonIndex))completion;
22 
23 + (MAlertView *)showAlertModalView:(UIView *)modalView
24  leftButtonTitle:(NSString *)leftButtonTitle
25  rightButtonTitle:(NSString *)rightButtonTitle
26  completion:(void (^)(NSInteger buttonIndex))completion;
27 
28 @end
Definition: MAlertView.h:16