// // HomeMemberAddViewController.h // kneet // // Created by Jason Lee on 6/15/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @interface HomeMemberAddViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomTableView *tableView; @property (weak, nonatomic) IBOutlet CustomButton *btnSend; @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; #pragma mark - Instance Methods - (IBAction)btnSendTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; @end @class CustomTextField; @class DatePickerButton; @class CustomLabel; @class CustomButton; @interface MemberHeaderTableViewCell : KNTableViewCell @end @interface MemberAddedTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail; @property (weak, nonatomic) IBOutlet CustomButton *btnRemove; @end @interface MemberInputTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtEmail; @property (weak, nonatomic) IBOutlet CustomButton *btnAdd; @end @interface MemberQuizTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate; @property (weak, nonatomic) IBOutlet CustomTextField *txtQuestion; @property (weak, nonatomic) IBOutlet CustomTextField *txtSelfQuiz; @property (weak, nonatomic) IBOutlet CustomButton *btnQuizSelect; @property (weak, nonatomic) IBOutlet UIView *viewSelfQuiz; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight; -(void)showDirectInputArea:(BOOL)isShow; @end