// // HomeMemberViewController.h // kneet // // Created by Jason Lee on 6/15/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @interface HomeMemberViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet UITableView *tableView; #pragma mark - Instance Methods - (void)refreshHomeMemberList; @end @class CustomButton; @class CustomLabel; @class CustomImageView; @interface MemberHeaderTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnHeader; @property (assign, nonatomic) NSInteger section; @property (weak, nonatomic) NSMutableDictionary *group; - (IBAction)btnHeaderTouched:(id)sender; @end @interface MemberTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomButton *btnMemberIcon; @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lblLevel; @end @interface MemberAddTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblAddTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lblAddDesc; - (IBAction)btnAddTouched:(id)sender; @end