|
@@ -26,6 +26,7 @@
|
|
|
#import "uploadFileRecordViewController.h"
|
|
|
#import "privacyModeViewController.h"
|
|
|
#import "TvStatusModel.h"
|
|
|
+#import "inputPWDViewController.h"
|
|
|
|
|
|
@interface MySetViewController ()<HelpDownScrollViewDelegate,UITableViewDelegate,UITableViewDataSource,ComontAlretViewControllerDelegate>
|
|
|
{
|
|
@@ -358,15 +359,23 @@
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
|
|
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
|
|
|
|
|
NSInteger row = indexPath.row;
|
|
|
if (0 == row){
|
|
|
|
|
|
- privacyModeViewController *nextVC = [[privacyModeViewController alloc] init];
|
|
|
+ inputPWDViewController *nextVC = [inputPWDViewController new];
|
|
|
+ nextVC.isCheckPwdType = YES;
|
|
|
[self.navigationController pushViewController:nextVC animated:YES];
|
|
|
|
|
|
+ KWeakSelf
|
|
|
+ nextVC.didInputRightPwdFun = ^{
|
|
|
+ [weakSelf gotoPrivacyModeVCFun];
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
/*修改密码*/
|
|
|
// ModifyPWDFirstViewController *nextVC = [[ModifyPWDFirstViewController alloc] init];
|
|
|
// [self.navigationController pushViewController:nextVC animated:YES];
|
|
@@ -422,6 +431,13 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+#pragma mark 去设置隐私
|
|
|
+- (void)gotoPrivacyModeVCFun
|
|
|
+{
|
|
|
+ privacyModeViewController *nextVC = [[privacyModeViewController alloc] init];
|
|
|
+ [self.navigationController pushViewController:nextVC animated:YES];
|
|
|
+}
|
|
|
+
|
|
|
- (void)CommonAlertokBtnClickPressed{
|
|
|
// /*重启云手机*/
|
|
|
// 通过指令通道发送 {"type":"reboot"}
|