| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // 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;
- @end
|