| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // 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
|