| 1234567891011121314151617181920212223242526 |
- //
- // FunctionTestViewController.h
- // iSales-NPD
- //
- // Created by Ray on 3/15/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FunctionTestViewController : UIViewController <UIPrintInteractionControllerDelegate>
- @property (nonatomic,strong) UIPrintInteractionController* airPrinterController;
- @property (nonatomic,strong) NSString* printerurl;
- @property (nonatomic,strong) NSString* printerdisplayName;
- @property (strong, nonatomic) IBOutlet UILabel *labelPrintername;
- @property (nonatomic,strong) UIPrinter* printer;
- @property (nonatomic,strong) NSURL *printerURL;
- @end
|