Commit 20b6a9464183bf4ed78edde2fd337fe9cfefbe95
1 parent
a5ef0e4d
no message
Showing
2 changed files
with
5 additions
and
0 deletions
CNLiveBMineModule/Classes/Controller/CNLiveMineController.m
| ... | ... | @@ -120,6 +120,7 @@ static const CGFloat timeValue = 1.5; |
| 120 | 120 | |
| 121 | 121 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ |
| 122 | 122 | CNLiveSettingController *vc = [[CNLiveSettingController alloc]init]; |
| 123 | + vc.hidesBottomBarWhenPushed = YES; | |
| 123 | 124 | [self.navigationController pushViewController:vc animated:YES]; |
| 124 | 125 | } |
| 125 | 126 | ... | ... |
CNLiveBMineModule/Classes/Setting/Controller/CNLiveSettingController.m
| ... | ... | @@ -164,11 +164,13 @@ static const NSInteger timeValue = 1.5; |
| 164 | 164 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ |
| 165 | 165 | if(indexPath.row == 0){ // 更换手机号 |
| 166 | 166 | CNLiveUpdateTelController *vc = [[CNLiveUpdateTelController alloc]init]; |
| 167 | + vc.hidesBottomBarWhenPushed = YES; | |
| 167 | 168 | [self.navigationController pushViewController:vc animated:YES]; |
| 168 | 169 | |
| 169 | 170 | } |
| 170 | 171 | else if(indexPath.row == 1){ //绑定管理 |
| 171 | 172 | CNLiveBindingManageController *vc = [[CNLiveBindingManageController alloc]init]; |
| 173 | + vc.hidesBottomBarWhenPushed = YES; | |
| 172 | 174 | [self.navigationController pushViewController:vc animated:YES]; |
| 173 | 175 | } |
| 174 | 176 | else if(indexPath.row == 2){ //帮助手册 |
| ... | ... | @@ -208,10 +210,12 @@ static const NSInteger timeValue = 1.5; |
| 208 | 210 | |
| 209 | 211 | }else if (indexPath.row == 4){ |
| 210 | 212 | CNLiveAboutUsController *vc = [[CNLiveAboutUsController alloc]init]; |
| 213 | + vc.hidesBottomBarWhenPushed = YES; | |
| 211 | 214 | [self.navigationController pushViewController:vc animated:YES]; |
| 212 | 215 | } |
| 213 | 216 | else if (indexPath.row == 5) { |
| 214 | 217 | CNLiveCancellationController *vc = [[CNLiveCancellationController alloc]init]; |
| 218 | + vc.hidesBottomBarWhenPushed = YES; | |
| 215 | 219 | [self.navigationController pushViewController:vc animated:YES]; |
| 216 | 220 | } |
| 217 | 221 | } | ... | ... |