0%

〈extreme.framework/EFBaseModalDialogViewController.h〉

extreme.framework/EFBaseModalDialogViewController.h〉

弹出式对话框基类。定义了对话框显示图标、显示标题、按下确定按钮执行的方法、按下关闭按钮和手动执行关闭对话框的方法。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
是否使用深色导航栏,默认使用浅色导航栏。(Navigation bar style, light as default.)
*/
@property (assign, nonatomic) BOOL navigationBarDark;
/**
图标。(The icon of modal dialog.)
*/
@property (weak, nonatomic, nullable) IBOutlet UIImageView *icon_imageView;
/**
自定义图标文件名。(For custom icon.)
*/
@property (strong, nonatomic, nonnull) NSString *iconImageName;
/**
标题。(The title of modal dialog.)
*/
@property (weak, nonatomic, nullable) IBOutlet UILabel *title_label;
/**
自定义标题文本。(For custom title.)
*/
@property (strong, nonatomic, nonnull) NSString *titleText;

/**
关闭对话框,方式1。(Close the modal dialog, the first way.)

@param sender the close button
*/
- (IBAction)tapToClose:(id _Nullable)sender;
/**
确定按钮。(OK button.)
*/
@property (weak, nonatomic, nullable) IBOutlet EFButton *OKButton;
/**
按下确定按钮,处理事件响应,请派生一个子类并使用 OKHandler:。(Press the OK button to handle the event, implement the OKHandler: in a modal dialog based on EFBaseModalDialogViewController.)

@param sender the ok button
*/
- (IBAction)tapToOK:(id _Nullable)sender;
/**
关闭对话框,方式2。(Close the modal dialog, the second way.)
*/
- (void)closeModalDialog;
/**
按下确定按钮回调。(The handler of button when pressed.)

@param sender the ok button
*/
- (void)OKHandler:(id _Nullable)sender;

相关

更新内容

  1. 结构调整,不再位于单独的子目录。
  2. 命名调整。
  3. 对话框导航栏支持选择深色或浅色。