Commit 5516821ec0f7b3838f5529764c2a74b232cfdea5
1 parent
0c462319
0.0.5
Showing
3 changed files
with
10 additions
and
3 deletions
CNLiveCMineModule.podspec
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 | { | ... | ... |