15 lines
425 B
Objective-C
15 lines
425 B
Objective-C
|
|
// 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
|