| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // DistributionCell.m
- // BuguLive
- //
- // Created by fanwe2014 on 2016/12/27.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import "DistributionCell.h"
- #import "LiveDataModel.h"
- @implementation DistributionCell
- - (void)awakeFromNib
- {
- [super awakeFromNib];
- _BuguLive = [GlobalVariables sharedInstance];
- self.headImgView.layer.cornerRadius = 20;
- self.headImgView.layer.masksToBounds = YES;
-
- self.nameLabel.textColor = kAppGrayColor1;
- self.ticketLabel.textColor = kAppGrayColor1;
-
- self.lineView.backgroundColor = kAppSpaceColor4;
-
-
- }
- - (void)setCellWithModel:(LiveDataModel *)model
- {
- [self.headImgView sd_setImageWithURL:[NSURL URLWithString:model.head_image]];
- NSString *nameString;
- if (model.user_name.length < 1)
- {
- nameString = ASLocalizedString(@"暂时还未命名");
- }else
- {
- nameString = model.user_name;
- }
- NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:nameString];
- self.nameLabel.attributedText = attr;
-
- if (model.diamonds > 1000)
- {
- self.ticketLabel.text = [NSString stringWithFormat:ASLocalizedString(@"%.2fK%@"),model.diamonds,_BuguLive.appModel.diamond_name];
- }else
- {
- self.ticketLabel.text = [NSString stringWithFormat:@"%.2f%@",model.diamonds ,_BuguLive.appModel.diamond_name];
- }
-
- }
- @end
|