AnchorCell.h 771 B

123456789101112131415161718192021222324
  1. //
  2. // AnchorCell.h
  3. // BuguLive
  4. //
  5. // Created by 杨仁伟 on 2017/8/7.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SociatyDetailModel.h"
  10. @interface AnchorCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *anchorImgH;
  12. @property (weak, nonatomic) IBOutlet UILabel *livingLbl;
  13. @property (weak, nonatomic) IBOutlet UIImageView *anchorImg;
  14. @property (weak, nonatomic) IBOutlet UILabel *anchorNameLbl;
  15. @property (weak, nonatomic) IBOutlet UIImageView *gradeImg;
  16. @property (weak, nonatomic) IBOutlet UIImageView *sexImg;
  17. @property (weak, nonatomic) IBOutlet UIView *bottomView;
  18. @property (weak, nonatomic) IBOutlet UILabel *predisentLbl;
  19. - (void)configCellMsg:(SociatyDetailModel *)model;
  20. @end