HomeMemberViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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)refreshHomeMemberList;
  16. - (IBAction)btnOptionTouched:(id)sender;
  17. - (IBAction)btnDeleteOnEditModeTouched:(id)sender;
  18. - (IBAction)btnCloseOnEditModeTouched:(id)sender;
  19. @end
  20. @class CustomButton;
  21. @class CustomLabel;
  22. @class CustomImageView;
  23. @class CustomCheckBox;
  24. @interface HomeMemberCollectionCell : UICollectionViewCell
  25. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMemberIcon;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
  28. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  29. @end
  30. @interface HomeMemberAddCollectionCell : UICollectionViewCell
  31. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  32. @end
  33. @interface HomeMemberCollectionFooterView : UICollectionReusableView
  34. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  35. @end