| 1234567891011121314 |
- // Created by Christopher on 9/4/15.
- #import <UIKit/UIKit.h>
- #import <React/RCTView.h>
- #import <React/RCTBridgeModule.h>
- @interface RNPrint : RCTView <RCTBridgeModule, UIPrintInteractionControllerDelegate, UIPrinterPickerControllerDelegate>
- @property UIPrinter *pickedPrinter;
- @property NSString *filePath;
- @property NSString *htmlString;
- @property NSURL *printerURL;
- @property (nonatomic, assign) BOOL isLandscape;
- @end
|