QRCodeViewController.h 635 B

123456789101112131415161718192021222324252627282930
  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. QRCodeTypeHomeHub = 0
  11. };
  12. @interface QRCodeViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (assign, nonatomic) QRCodeType qrcodeType;
  15. @property (weak, nonatomic) IBOutlet UIView *containerView;
  16. #pragma mark - Instance Methods
  17. - (IBAction)btnInsertTouched:(id)sender;
  18. - (IBAction)btnCancelTouched:(id)sender;
  19. - (void)requestQRAuthrize:(NSString *)activationCode password:(NSString *)password;
  20. @end