ThingsAddPlugViewController.h 750 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ThingsAddPlugViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/27/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @interface ThingsAddPlugViewController : JDTableViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep1Title;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep2Title;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep3Title;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnQRCode;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnDawonLinkTouched:(id)sender;
  20. - (IBAction)btnQRCodeTouched:(id)sender;
  21. @end