HomeMemberViewController.h 898 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #pragma mark - Instance Methods
  13. - (void)refreshHomeMemberList;
  14. - (IBAction)btnOptionTouched:(id)sender;
  15. @end
  16. @class CustomButton;
  17. @class CustomLabel;
  18. @class CustomImageView;
  19. @interface HomeMemberCollectionCell : UICollectionViewCell
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMemberIcon;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
  23. @end
  24. @interface HomeMemberCollectionFooterView : UICollectionReusableView
  25. @property (weak, nonatomic) IBOutlet UILabel *lblHeaderTitle;
  26. @end