| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //
- // 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;
- @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
|