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 | 39 | self.contentView.backgroundColor = [UIColor whiteColor]; |
| 40 | 40 | [self.contentView addSubview:self.iconView]; |
| 41 | 41 | [self.contentView addSubview:self.nameLabel]; |
| 42 | - [self.contentView addSubview:self.locationLabel]; | |
| 42 | +// [self.contentView addSubview:self.locationLabel]; | |
| 43 | 43 | [self.contentView addSubview:self.countLabel]; |
| 44 | 44 | [self.contentView addSubview:self.lookLabel]; |
| 45 | 45 | [self.contentView addSubview:self.imageView]; |
| ... | ... | @@ -86,7 +86,7 @@ |
| 86 | 86 | _stateLabel.text = @"已结束"; |
| 87 | 87 | break; |
| 88 | 88 | case 4: // 已离线 |
| 89 | - _stateLabel.text = @"已离线"; | |
| 89 | + _stateLabel.text = @"回放"; | |
| 90 | 90 | break; |
| 91 | 91 | |
| 92 | 92 | default: |
| ... | ... | @@ -109,8 +109,9 @@ |
| 109 | 109 | |
| 110 | 110 | - (UILabel *)nameLabel { |
| 111 | 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 | 113 | _nameLabel.text = @"这是我的昵称"; |
| 114 | + _nameLabel.font = [UIFont systemFontOfSize:20]; | |
| 114 | 115 | _nameLabel.textColor = [UIColor grayColor]; |
| 115 | 116 | } |
| 116 | 117 | return _nameLabel; | ... | ... |