HomeMemberViewController.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // HomeMemberViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/15/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface HomeMemberViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. #pragma mark - Instance Methods
  13. - (void)refreshHomeMemberList;
  14. @end
  15. @class CustomButton;
  16. @class CustomLabel;
  17. @class CustomImageView;
  18. @interface MemberHeaderTableViewCell : UITableViewCell
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnHeader;
  20. @property (assign, nonatomic) NSInteger section;
  21. @property (weak, nonatomic) NSMutableDictionary *group;
  22. - (IBAction)btnHeaderTouched:(id)sender;
  23. @end
  24. @interface MemberTableViewCell : UITableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnMemberIcon;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblLevel;
  28. @end
  29. @interface MemberAddTableViewCell : UITableViewCell
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblAddTitle;
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblAddDesc;
  32. - (IBAction)btnAddTouched:(id)sender;
  33. @end