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,6 +120,7 @@ static const CGFloat timeValue = 1.5; | ||
| 120 | 120 | ||
| 121 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ | 121 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ |
| 122 | CNLiveSettingController *vc = [[CNLiveSettingController alloc]init]; | 122 | CNLiveSettingController *vc = [[CNLiveSettingController alloc]init]; |
| 123 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 123 | [self.navigationController pushViewController:vc animated:YES]; | 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,11 +164,13 @@ static const NSInteger timeValue = 1.5; | ||
| 164 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ | 164 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ |
| 165 | if(indexPath.row == 0){ // 更换手机号 | 165 | if(indexPath.row == 0){ // 更换手机号 |
| 166 | CNLiveUpdateTelController *vc = [[CNLiveUpdateTelController alloc]init]; | 166 | CNLiveUpdateTelController *vc = [[CNLiveUpdateTelController alloc]init]; |
| 167 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 167 | [self.navigationController pushViewController:vc animated:YES]; | 168 | [self.navigationController pushViewController:vc animated:YES]; |
| 168 | 169 | ||
| 169 | } | 170 | } |
| 170 | else if(indexPath.row == 1){ //绑定管理 | 171 | else if(indexPath.row == 1){ //绑定管理 |
| 171 | CNLiveBindingManageController *vc = [[CNLiveBindingManageController alloc]init]; | 172 | CNLiveBindingManageController *vc = [[CNLiveBindingManageController alloc]init]; |
| 173 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 172 | [self.navigationController pushViewController:vc animated:YES]; | 174 | [self.navigationController pushViewController:vc animated:YES]; |
| 173 | } | 175 | } |
| 174 | else if(indexPath.row == 2){ //帮助手册 | 176 | else if(indexPath.row == 2){ //帮助手册 |
| @@ -208,10 +210,12 @@ static const NSInteger timeValue = 1.5; | @@ -208,10 +210,12 @@ static const NSInteger timeValue = 1.5; | ||
| 208 | 210 | ||
| 209 | }else if (indexPath.row == 4){ | 211 | }else if (indexPath.row == 4){ |
| 210 | CNLiveAboutUsController *vc = [[CNLiveAboutUsController alloc]init]; | 212 | CNLiveAboutUsController *vc = [[CNLiveAboutUsController alloc]init]; |
| 213 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 211 | [self.navigationController pushViewController:vc animated:YES]; | 214 | [self.navigationController pushViewController:vc animated:YES]; |
| 212 | } | 215 | } |
| 213 | else if (indexPath.row == 5) { | 216 | else if (indexPath.row == 5) { |
| 214 | CNLiveCancellationController *vc = [[CNLiveCancellationController alloc]init]; | 217 | CNLiveCancellationController *vc = [[CNLiveCancellationController alloc]init]; |
| 218 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 215 | [self.navigationController pushViewController:vc animated:YES]; | 219 | [self.navigationController pushViewController:vc animated:YES]; |
| 216 | } | 220 | } |
| 217 | } | 221 | } |