Commit 3a9c2a053dc4e382aab3d783021286d597c50bca

Authored by 颜玄
1 parent 6ab87cc3

5.15保存的版本

LiveVideoCloud/LiveVideoCloud/Classes/Sections/Mine/Controllers/MineAboutUsController.m
... ... @@ -53,6 +53,7 @@
53 53 _iconImageView = [UIImageView new];
54 54 [self.view addSubview:_iconImageView];
55 55 }
  56 +
56 57 return _iconImageView;
57 58 }
58 59  
... ...
LiveVideoCloud/LiveVideoCloud/Classes/Sections/Mine/Views/PlayRecordCell.h
... ... @@ -12,8 +12,6 @@
12 12  
13 13 @interface PlayRecordCell : BaseTableViewCell
14 14  
15   -//- (void)updateInfo:(NSDictionary *)info ;
16   -
17 15 - (void)updateInfo:(LVCUGCLivePlayerModel *)info ;
18 16  
19 17 @end
... ...
LiveVideoCloud/LiveVideoCloud/Classes/Sections/Mine/Views/PlayRecordCell.m
... ... @@ -66,8 +66,8 @@
66 66 label.font = [UIFont systemFontOfSize:11.0f];
67 67  
68 68 _endTimeLabel = label;
69   -
70 69 [self addSubview:_endTimeLabel];
  70 +// [self addSubview:_endTimeLabel];
71 71 }
72 72  
73 73 return _endTimeLabel;
... ... @@ -99,8 +99,8 @@
99 99 // self.endTimeLabel.text = [NSString stringWithFormat:@"结束:%@ ", end];
100 100 //}
101 101  
102   -- (void)updateInfo:(LVCUGCLivePlayerModel *)info {
103   -
  102 +- (void)updateInfo:(LVCUGCLivePlayerModel *)info
  103 +{
104 104  
105 105 [self.iconImageView setImageWithURL:[NSURL URLWithString:info.coverImgUrl] placeholderImage:nil];
106 106 self.nameLabel.text = info.activityName;
... ...
LiveVideoCloud/LiveVideoCloud/UtilKits/UserTools/UserTools.m
... ... @@ -239,6 +239,7 @@
239 239 }
240 240  
241 241  
  242 +
242 243 + (void)getAnchor:(NSDictionary *)param success:(AFHttpSuccessBlock)success failure:(AFHttpFailureBlock)failure
243 244 {
244 245 NSInteger time = [[NSDate date] timeIntervalSince1970];
... ...