// // SRedBagViewCell.h // BuguLive // // Created by 丁凯 on 2017/7/15. // Copyright © 2017年 xfg. All rights reserved. // #import @interface SRedBagViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *headView; @property (weak, nonatomic) IBOutlet UILabel *moneyLabel; @property (weak, nonatomic) IBOutlet UIImageView *goldView; @property (weak, nonatomic) IBOutlet UIImageView *sexView; @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *goldViewTopHeight; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *moneyLabelTopHeight; @property (weak, nonatomic) IBOutlet UIView *lineView; @property (weak, nonatomic) IBOutlet UIImageView *comDiamond1; //@property(strong,nonatomic)UIView *lineView; - (void)creatCellWithModel:(CustomMessageModel *)model andRow:(int)row; @end