mirror of
https://gitee.com/shuto/cordova-plugin-file-opener2.git
synced 2025-02-07 23:03:16 +08:00
11 lines
259 B
C
11 lines
259 B
C
|
#import <Cordova/CDV.h>
|
||
|
|
||
|
@interface FileOpener2 : CDVPlugin <UIDocumentInteractionControllerDelegate> {
|
||
|
NSString *localFile;
|
||
|
}
|
||
|
|
||
|
@property(nonatomic, strong) UIDocumentInteractionController *controller;
|
||
|
|
||
|
- (void) open: (CDVInvokedUrlCommand*)command;
|
||
|
|
||
|
@end
|