linphone-ios/Classes/LinphoneUI/UIConfirmationDialog.h
2015-09-14 12:18:11 +02:00

25 lines
563 B
Objective-C

//
// UIConfirmationDialog.h
// linphone
//
// Created by Gautier Pelloux-Prayer on 11/09/15.
//
//
typedef void (^UIConfirmationBlock)(void);
@interface UIConfirmationDialog : UIViewController {
UIConfirmationBlock onCancelCb;
UIConfirmationBlock onConfirmCb;
}
+ (void)ShowWithMessage:(NSString *)message
onCancelClick:(UIConfirmationBlock)onCancel
onConfirmationClick:(UIConfirmationBlock)onConfirm;
@property(weak, nonatomic) IBOutlet UILabel *titleLabel;
- (IBAction)onCancelClick:(id)sender;
- (IBAction)onConfirmationClick:(id)sender;
@end