summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuDialogCreator.h
blob: aec786d09ae8dd3ad13e4c0fd32238ffed5c0eff (plain)
1
2
3
4
5
6
#import <Foundation/Foundation.h>

@protocol MuDialogCreator <NSObject>
- (void) invokeTextDialog:(NSString *)aString okayAction:(void (^)(NSString *))block;
- (void) invokeChoiceDialog:(NSArray *)anArray okayAction:(void (^)(NSArray *))block;
@end