| 12345678910111213141516171819202122232425262728 |
- //
- // ThingsAddPlugViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/27/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @interface ThingsAddPlugViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep1Title;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep2Title;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep3Title;
- @property (weak, nonatomic) IBOutlet CustomButton *btnQRCode;
- #pragma mark - Instance Methods
- - (IBAction)btnDawonLinkTouched:(id)sender;
- - (IBAction)btnQRCodeTouched:(id)sender;
- @end
|