Touching the "cancel" button-The (void) didDismissFilesPicker method is not called.
And i find it
JVTActionSheetAction *cancel = [JVTActionSheetAction actionWithTitle:cancelTxt
actionType:kActionType_cancel
handler:^(JVTActionSheetAction *action) {
@strongify(self);
[self dismissPresentedControllerAndInformDelegate:nil];
}];
- (void)dismissPresentedControllerAndInformDelegate:(UIViewController *)presentedController {
[presentedController dismissViewControllerAnimated:YES
completion:^(void) {
[self updateDelegateOnDissmiss];
}];
}
I need to receive an event when the window is closed.
Please fix it.
Thank's
Touching the "cancel" button-The (void) didDismissFilesPicker method is not called.
And i find it
JVTActionSheetAction *cancel = [JVTActionSheetAction actionWithTitle:cancelTxt
actionType:kActionType_cancel
handler:^(JVTActionSheetAction *action) {
@strongify(self);
[self dismissPresentedControllerAndInformDelegate:nil];
}];
[presentedController dismissViewControllerAnimated:YES
completion:^(void) {
[self updateDelegateOnDissmiss];
}];
}
I need to receive an event when the window is closed.
Please fix it.
Thank's