HomeMemberViewController.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 CustomLabel *lblTitle;
  12. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  13. @property (weak, nonatomic) IBOutlet UIView *editModeView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintEditModeRight;
  15. #pragma mark - Instance Methods
  16. - (void)updateHomeHubStatusToMembers;
  17. - (void)refreshHomeMemberList;
  18. - (IBAction)btnOptionTouched:(id)sender;
  19. - (IBAction)btnDeleteOnEditModeTouched:(id)sender;
  20. - (IBAction)btnCloseOnEditModeTouched:(id)sender;
  21. @end
  22. @class CustomButton;
  23. @class CustomLabel;
  24. @class CustomImageView;
  25. @class CustomCheckBox;
  26. @interface HomeMemberCollectionCell : UICollectionViewCell
  27. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMemberIcon;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
  30. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  31. @end
  32. @interface HomeMemberAddCollectionCell : UICollectionViewCell
  33. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  34. @end
  35. @interface HomeMemberCollectionFooterView : UICollectionReusableView
  36. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  37. @end