| 123456789101112131415161718192021222324252627282930 |
- //
- // QRCodeViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/18/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- typedef NS_ENUM(NSInteger, QRCodeType) {
- QRCodeTypeHomeHub = 0
- };
- @interface QRCodeViewController : JDViewController
- #pragma mark - Properties
- @property (assign, nonatomic) QRCodeType qrcodeType;
- @property (weak, nonatomic) IBOutlet UIView *containerView;
- #pragma mark - Instance Methods
- - (IBAction)btnInsertTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- - (void)requestQRAuthrize:(NSString *)activationCode password:(NSString *)password;
- @end
|