Commit 5516821ec0f7b3838f5529764c2a74b232cfdea5
1 parent
0c462319
0.0.5
Showing
3 changed files
with
10 additions
and
3 deletions
CNLiveCMineModule.podspec
| @@ -8,7 +8,7 @@ | @@ -8,7 +8,7 @@ | ||
| 8 | 8 | ||
| 9 | Pod::Spec.new do |s| | 9 | Pod::Spec.new do |s| |
| 10 | s.name = 'CNLiveCMineModule' | 10 | s.name = 'CNLiveCMineModule' |
| 11 | - s.version = '0.0.4' | 11 | + s.version = '0.0.5' |
| 12 | s.summary = '网家家C端个人中心' | 12 | s.summary = '网家家C端个人中心' |
| 13 | 13 | ||
| 14 | # This description is used to generate tags and improve search results. | 14 | # This description is used to generate tags and improve search results. |
CNLiveCMineModule/Classes/inte/Controller/CNLiveCMineInteAnnouListViewController.m
| @@ -93,6 +93,14 @@ | @@ -93,6 +93,14 @@ | ||
| 93 | [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainWebViewWithURL:shreUrl statue:CNLiveCMineIntePushWebViewStatueAnnotationDetail]; | 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 | #pragma mark = getter | 104 | #pragma mark = getter |
| 97 | - (CNLiveNavigationBar *)navigationBar { | 105 | - (CNLiveNavigationBar *)navigationBar { |
| 98 | if (!_navigationBar) { | 106 | if (!_navigationBar) { |
CNLiveCMineModule/Classes/inte/View/CNLiveCMineInteHeaderSignView.m
| @@ -101,7 +101,7 @@ | @@ -101,7 +101,7 @@ | ||
| 101 | make.bottom.mas_equalTo(weakSelf).offset(-40); | 101 | make.bottom.mas_equalTo(weakSelf).offset(-40); |
| 102 | }]; | 102 | }]; |
| 103 | [self.bottemView mas_makeConstraints:^(MASConstraintMaker *make) { | 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 | make.left.right.mas_equalTo(weakSelf); | 105 | make.left.right.mas_equalTo(weakSelf); |
| 106 | make.bottom.mas_equalTo(weakSelf); | 106 | make.bottom.mas_equalTo(weakSelf); |
| 107 | }]; | 107 | }]; |
| @@ -176,7 +176,6 @@ | @@ -176,7 +176,6 @@ | ||
| 176 | } | 176 | } |
| 177 | 177 | ||
| 178 | if (announModel == nil) self.titleLabel.top = CGRectGetMaxY(self.topView.frame) + 10; | 178 | if (announModel == nil) self.titleLabel.top = CGRectGetMaxY(self.topView.frame) + 10; |
| 179 | - | ||
| 180 | } | 179 | } |
| 181 | -(void)pushAnnouMedthod:(UIButton *)button | 180 | -(void)pushAnnouMedthod:(UIButton *)button |
| 182 | { | 181 | { |