cordova-plugin-file-opener2/src/ios/FileOpener2.h
pwlin 7235ec4a0d - Added iOS support
- Upped the version to 1.0.4
2014-02-11 15:42:00 +01:00

11 lines
259 B
Objective-C

#import <Cordova/CDV.h>
@interface FileOpener2 : CDVPlugin <UIDocumentInteractionControllerDelegate> {
NSString *localFile;
}
@property(nonatomic, strong) UIDocumentInteractionController *controller;
- (void) open: (CDVInvokedUrlCommand*)command;
@end