StartHomeViewController.h 929 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // StartHomeViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @class CustomTextField2;
  12. @interface StartHomeViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (assign, nonatomic) BOOL canGoBack;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblHomeDesc;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnHomeIcon;
  18. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtHomeName;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnSNext;
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
  22. #pragma mark - Instance Methods
  23. - (IBAction)btnCreateHomeTouched:(id)sender;
  24. - (IBAction)btnCancelTouched:(id)sender;
  25. @end