// // SignUpViewController.h // kneet // // Created by Jason Lee on 4/23/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDTableViewController.h" #import "JDViewController.h" @class CustomTextField; @class CustomLabel; @class CustomButton; @class KNTableViewCell; @interface SignUpViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomTableView *tableView; @property (weak, nonatomic) IBOutlet CustomButton *btnSignUp; @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; #pragma mark - Instance Methods - (IBAction)btnSignUpTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; @end @interface SignUpProfileTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnProfile; @property (weak, nonatomic) IBOutlet CustomButton *btnSetProfile; @end @interface SignUpNameTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtNickname; @end @interface SignUpEmailTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail; @end @interface SignUpPasswdTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd; @end @interface SignUpPGuideTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblGuide; @end @interface SignUpPasswdConfirmTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm; @end