RNPrint.h 425 B

1234567891011121314
  1. // Created by Christopher on 9/4/15.
  2. #import <UIKit/UIKit.h>
  3. #import <React/RCTView.h>
  4. #import <React/RCTBridgeModule.h>
  5. @interface RNPrint : RCTView <RCTBridgeModule, UIPrintInteractionControllerDelegate, UIPrinterPickerControllerDelegate>
  6. @property UIPrinter *pickedPrinter;
  7. @property NSString *filePath;
  8. @property NSString *htmlString;
  9. @property NSURL *printerURL;
  10. @property (nonatomic, assign) BOOL isLandscape;
  11. @end