| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // 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 UITableView *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 CustomTextField2;
- @class DatePickerButton;
- @class CustomLabel;
- @class CustomButton;
- @interface MemberInputTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblInputTitle;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtQuestion;
- @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate;
- @end
- @interface MemberInviteTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnInvite;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblInviteDesc;
- @end
- @interface MemberEmailTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblLevel;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
- @end
|