Commit 60a32a43e3da6b1cee2c4232da40c5f7b56c3ab3

Authored by yanglingyu
1 parent c9092fe0

0.2.6

CNLiveCMineModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCMineModule'
11   - s.version = '0.2.5'
  11 + s.version = '0.2.6'
12 12 s.summary = '网家家C端个人中心'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCMineModule/Classes/CNCMine/ViewController/CNLiveMineVC.m
... ... @@ -207,8 +207,8 @@ static NSString *const CNSobotNotification_NewMessage = @"CNSobotNotification_Ne
207 207 make.width.height.mas_equalTo(DS_adapt_length(60));
208 208 }];
209 209 self.topImageView.iconImage.layer.mask = [self maskLayerWithWidth:DS_adapt_length(60)];
210   - [self.topImageView.codesView mas_makeConstraints:^(MASConstraintMaker *make) {
211   - make.top.equalTo(self.topImageView).offset(kStatusHeight);
  210 + [self.topImageView.codesView mas_remakeConstraints:^(MASConstraintMaker *make) {
  211 + make.top.equalTo(self.topImageView.mas_top).offset(kStatusHeight);
212 212 make.right.equalTo(self.topImageView).offset(-DS_adapt_length(10));
213 213 make.height.mas_equalTo(DS_adapt_length(30));
214 214 make.width.mas_equalTo(DS_adapt_length(105));
... ...