QRCodeViewController.h 650 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // QRCodeViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/18/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. typedef NS_ENUM(NSInteger, QRCodeType) {
  10. QRCodeTypeCommaxWallpad = 1,
  11. QRCodeTypeDawonSmartPlug,
  12. QRCodeTypeFoscamF18910W,
  13. QRCodeTypeSmartphoneGeofencing
  14. };
  15. @interface QRCodeViewController : JDViewController
  16. #pragma mark - Properties
  17. @property (assign, nonatomic) QRCodeType qrcodeType;
  18. @property (weak, nonatomic) IBOutlet UIView *conainerView;
  19. #pragma mark - Instance Methods
  20. - (IBAction)btnInsertTouched:(id)sender;
  21. - (IBAction)btnCancelTouched:(id)sender;
  22. @end