HomeMemberViewController.h 1.4 KB

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