FansCell.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // FansCell.h
  3. // BuguLive
  4. //
  5. // Created by 杨仁伟 on 2017/8/8.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SociatyDetailModel.h"
  10. @class FansCell;
  11. @protocol FansCellDelegate <NSObject>
  12. //踢出公会
  13. - (void)pleaseLeaveWithSocietyMember:(FansCell *)cell;
  14. //直播
  15. - (void)fansViewLiving:(FansCell *)cell;
  16. @end
  17. @interface FansCell : UICollectionViewCell
  18. @property (weak, nonatomic) IBOutlet UIButton *fansViewLiveBtn;
  19. @property (weak, nonatomic) IBOutlet UIImageView *fansHeadImg;
  20. @property (weak, nonatomic) IBOutlet UILabel *fansNickNameLbl;
  21. @property (weak, nonatomic) IBOutlet UIImageView *fansSexImg;
  22. @property (weak, nonatomic) IBOutlet UIImageView *fansGradeImg;
  23. @property (weak, nonatomic) IBOutlet UIButton *fansGoOutBtn;
  24. @property (nonatomic, weak) id <FansCellDelegate> delegate;
  25. @property (weak, nonatomic) IBOutlet UILabel *fansPridisentLbl;
  26. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *fansDistanceW;
  27. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *fansPridisentLblW;
  28. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *goOutWidth;
  29. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *distanceWidth;
  30. - (void)configCellMsg:(SociatyDetailModel *)model memberType:(int)memberType;
  31. @end