Files
phonegap-plugins/iOS/PDFViewer/PDFViewerCommand.h
RandyMcMillan 1fc59baa41 Add PDFViewer
2012-10-26 06:57:35 -04:00

17 lines
452 B
Objective-C

// PDFViewer based on ChildBrowser
// Created by Jesse MacFadyen on 10-05-29.
// Copyright 2010 Nitobi. All rights reserved.
// Copyright 2012, Randy McMillan
#import <Cordova/CDVPlugin.h>
#import "PDFViewerViewController.h"
@interface PDFViewerCommand : CDVPlugin <PDFViewerDelegate>{}
@property (nonatomic, strong) PDFViewerViewController *pdfViewer;
- (void)showPDF:(NSMutableArray *)arguments withDict:(NSMutableDictionary *)options;
@end