SRedBagViewCell.h 896 B

123456789101112131415161718192021222324252627
  1. //
  2. // SRedBagViewCell.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/7/15.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SRedBagViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *headView;
  11. @property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
  12. @property (weak, nonatomic) IBOutlet UIImageView *goldView;
  13. @property (weak, nonatomic) IBOutlet UIImageView *sexView;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *goldViewTopHeight;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *moneyLabelTopHeight;
  17. @property (weak, nonatomic) IBOutlet UIView *lineView;
  18. @property (weak, nonatomic) IBOutlet UIImageView *comDiamond1;
  19. //@property(strong,nonatomic)UIView *lineView;
  20. - (void)creatCellWithModel:(CustomMessageModel *)model andRow:(int)row;
  21. @end