Commit 4d64ebceb6805249b0db9fa34c8779ccf1ee0cc0

Authored by zhangxiaowen
1 parent 1c1b42e0

no message

CNLiveIntegralModule/Classes/View/CNLiveTaskListHeadView.m
... ... @@ -11,6 +11,8 @@
11 11 #import <Masonry/Masonry.h>
12 12 #import <SDWebImage/SDWebImage.h>
13 13  
  14 +#import "CNUserInfoManager.h"
  15 +
14 16 @interface CNLiveTaskListHeadView()
15 17 @property (nonatomic, strong) UIImageView *headView;
16 18 @property (nonatomic, strong) UILabel *currentScore;
... ... @@ -99,7 +101,7 @@ static const NSInteger margin = 15;
99 101 _headView.layer.masksToBounds = YES;
100 102 _headView.layer.borderColor = [UIColor whiteColor].CGColor;
101 103 _headView.layer.borderWidth = 1.5;
102   - [_headView sd_setImageWithURL:[NSURL URLWithString:@"CNUserShareModel.faceUrl"] placeholderImage:nil];
  104 + [_headView sd_setImageWithURL:[NSURL URLWithString:CNUserShareModel.faceUrl] placeholderImage:nil];
103 105  
104 106 }
105 107 return _headView;
... ...