SignUpViewController.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 CustomButton *btnSignUp;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnSignUpTouched:(id)sender;
  20. - (IBAction)btnCancelTouched:(id)sender;
  21. @end
  22. @interface SignUpProfileTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  24. @end
  25. @interface SignUpNameTableViewCell : KNTableViewCell
  26. @property (weak, nonatomic) IBOutlet CustomTextField *txtName;
  27. @end
  28. @interface SignUpEmailTableViewCell : KNTableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail;
  30. @end
  31. @interface SignUpPasswdTableViewCell : KNTableViewCell
  32. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
  33. @end
  34. @interface SignUpPGuideTableViewCell : KNTableViewCell
  35. @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide;
  36. @end
  37. @interface SignUpPasswdConfirmTableViewCell : KNTableViewCell
  38. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm;
  39. @end