/** 关闭对话框,方式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;