FunctionTestViewController.h 704 B

123456789101112131415161718192021222324252627
  1. //
  2. // FunctionTestViewController.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 3/15/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FunctionTestViewController : UIViewController <UIPrintInteractionControllerDelegate>
  10. @property (nonatomic,strong) UIPrintInteractionController* airPrinterController;
  11. @property (nonatomic,strong) NSString* printerurl;
  12. @property (nonatomic,strong) NSString* filename;
  13. @property (nonatomic,strong) NSString* printerdisplayName;
  14. @property (strong, nonatomic) IBOutlet UILabel *labelPrintername;
  15. @property (nonatomic,strong) UIPrinter* printer;
  16. @property (nonatomic,strong) NSURL *printerURL;
  17. @end