SignUpViewController.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. @end
  26. @interface SignUpNameTableViewCell : KNTableViewCell
  27. @property (weak, nonatomic) IBOutlet CustomTextField *txtNickname;
  28. @end
  29. @interface SignUpEmailTableViewCell : KNTableViewCell
  30. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  31. @end
  32. @interface SignUpPasswdTableViewCell : KNTableViewCell
  33. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
  34. @end
  35. @interface SignUpPGuideTableViewCell : KNTableViewCell
  36. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  37. @end
  38. @interface SignUpPasswdConfirmTableViewCell : KNTableViewCell
  39. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm;
  40. @end