Commit 1c0dde751827f91a9f91831dbfc815539974212a
1 parent
55c29848
去掉地址显示
Showing
1 changed file
with
4 additions
and
3 deletions
LiveVideoCloud/Classes/Sections/UGCSections/View/LVCUGCLivePlayerCell.m
| @@ -39,7 +39,7 @@ | @@ -39,7 +39,7 @@ | ||
| 39 | self.contentView.backgroundColor = [UIColor whiteColor]; | 39 | self.contentView.backgroundColor = [UIColor whiteColor]; |
| 40 | [self.contentView addSubview:self.iconView]; | 40 | [self.contentView addSubview:self.iconView]; |
| 41 | [self.contentView addSubview:self.nameLabel]; | 41 | [self.contentView addSubview:self.nameLabel]; |
| 42 | - [self.contentView addSubview:self.locationLabel]; | 42 | +// [self.contentView addSubview:self.locationLabel]; |
| 43 | [self.contentView addSubview:self.countLabel]; | 43 | [self.contentView addSubview:self.countLabel]; |
| 44 | [self.contentView addSubview:self.lookLabel]; | 44 | [self.contentView addSubview:self.lookLabel]; |
| 45 | [self.contentView addSubview:self.imageView]; | 45 | [self.contentView addSubview:self.imageView]; |
| @@ -86,7 +86,7 @@ | @@ -86,7 +86,7 @@ | ||
| 86 | _stateLabel.text = @"已结束"; | 86 | _stateLabel.text = @"已结束"; |
| 87 | break; | 87 | break; |
| 88 | case 4: // 已离线 | 88 | case 4: // 已离线 |
| 89 | - _stateLabel.text = @"已离线"; | 89 | + _stateLabel.text = @"回放"; |
| 90 | break; | 90 | break; |
| 91 | 91 | ||
| 92 | default: | 92 | default: |
| @@ -109,8 +109,9 @@ | @@ -109,8 +109,9 @@ | ||
| 109 | 109 | ||
| 110 | - (UILabel *)nameLabel { | 110 | - (UILabel *)nameLabel { |
| 111 | if (!_nameLabel) { | 111 | if (!_nameLabel) { |
| 112 | - _nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(70, 15, SCREEN_WIDTH - 140, 20)]; | 112 | + _nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(70, 25, SCREEN_WIDTH - 140, 20)]; |
| 113 | _nameLabel.text = @"这是我的昵称"; | 113 | _nameLabel.text = @"这是我的昵称"; |
| 114 | + _nameLabel.font = [UIFont systemFontOfSize:20]; | ||
| 114 | _nameLabel.textColor = [UIColor grayColor]; | 115 | _nameLabel.textColor = [UIColor grayColor]; |
| 115 | } | 116 | } |
| 116 | return _nameLabel; | 117 | return _nameLabel; |