Commit 5516821ec0f7b3838f5529764c2a74b232cfdea5

Authored by liushiyu
1 parent 0c462319

0.0.5

CNLiveCMineModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCMineModule'
11   - s.version = '0.0.4'
  11 + s.version = '0.0.5'
12 12 s.summary = '网家家C端个人中心'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCMineModule/Classes/inte/Controller/CNLiveCMineInteAnnouListViewController.m
... ... @@ -93,6 +93,14 @@
93 93 [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainWebViewWithURL:shreUrl statue:CNLiveCMineIntePushWebViewStatueAnnotationDetail];
94 94 }
95 95 }
  96 +-(UIStatusBarStyle)preferredStatusBarStyle
  97 +{
  98 + if (@available(iOS 13.0, *)) {
  99 + return UIStatusBarStyleDarkContent;
  100 + } else {
  101 + return UIStatusBarStyleDefault;
  102 + }
  103 +}
96 104 #pragma mark = getter
97 105 - (CNLiveNavigationBar *)navigationBar {
98 106 if (!_navigationBar) {
... ...
CNLiveCMineModule/Classes/inte/View/CNLiveCMineInteHeaderSignView.m
... ... @@ -101,7 +101,7 @@
101 101 make.bottom.mas_equalTo(weakSelf).offset(-40);
102 102 }];
103 103 [self.bottemView mas_makeConstraints:^(MASConstraintMaker *make) {
104   - make.top.mas_equalTo(weakSelf.topView.mas_bottom).offset(-15);
  104 + make.top.mas_equalTo(weakSelf.topView.mas_bottom).offset(-20);
105 105 make.left.right.mas_equalTo(weakSelf);
106 106 make.bottom.mas_equalTo(weakSelf);
107 107 }];
... ... @@ -176,7 +176,6 @@
176 176 }
177 177  
178 178 if (announModel == nil) self.titleLabel.top = CGRectGetMaxY(self.topView.frame) + 10;
179   -
180 179 }
181 180 -(void)pushAnnouMedthod:(UIButton *)button
182 181 {
... ...