SignUpViewController.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //
  2. // SignUpViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. #import "JDViewController.h"
  10. @class CustomTextField;
  11. @class CustomLabel;
  12. @class CustomButton;
  13. @class KNTableViewCell;
  14. @interface SignUpViewController : JDViewController
  15. #pragma mark - Properties
  16. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnSignUp;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  19. #pragma mark - Instance Methods
  20. - (IBAction)btnSignUpTouched:(id)sender;
  21. - (IBAction)btnCancelTouched:(id)sender;
  22. @end
  23. @interface SignUpProfileTableViewCell : KNTableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnSetProfile;
  26. @end
  27. @interface SignUpNameTableViewCell : KNTableViewCell
  28. @property (weak, nonatomic) IBOutlet CustomTextField *txtNickname;
  29. @end
  30. @interface SignUpEmailTableViewCell : KNTableViewCell
  31. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  32. @end
  33. @interface SignUpPasswdTableViewCell : KNTableViewCell
  34. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
  35. @end
  36. @interface SignUpPGuideTableViewCell : KNTableViewCell
  37. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  38. @end
  39. @interface SignUpPasswdConfirmTableViewCell : KNTableViewCell
  40. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm;
  41. @end