|
@@ -187,13 +187,18 @@
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ NSString*msgStr1 = NSLocalizedString(@"backups_need_read_msg",nil);
|
|
|
+ NSString*msgStr2 = NSLocalizedString(@"backups_need_read_msg2",nil);
|
|
|
+
|
|
|
+ NSString *totalMsgstr = [[NSString alloc] initWithFormat:@"%@%@",msgStr1,msgStr2];
|
|
|
+
|
|
|
//KWeakSelf
|
|
|
/*弹窗提示恢复出厂*/
|
|
|
- ComontAlretViewController *nextVC = [[ComontAlretViewController alloc] initWithTiTle:nil
|
|
|
- msg:NSLocalizedString(@"backups_need_read_msg",nil)
|
|
|
- imageStr:nil
|
|
|
+ ComontAlretViewController *nextVC = [[ComontAlretViewController alloc] initWithTiTle:@""
|
|
|
+ msg:totalMsgstr
|
|
|
+ imageStr:@""
|
|
|
cancelTitle:NSLocalizedString(@"guide_set_pwd_guide_know",nil)
|
|
|
- okTitle:nil
|
|
|
+ okTitle:@""
|
|
|
isOkBtnHighlight:NO
|
|
|
didClickOk:^{
|
|
|
|
|
@@ -202,6 +207,7 @@
|
|
|
}];
|
|
|
|
|
|
nextVC.modalPresentationStyle = UIModalPresentationCustom;
|
|
|
+ [nextVC setMsgTextAlignment:NSTextAlignmentLeft];
|
|
|
|
|
|
[[iTools appRootViewController] presentViewController:nextVC animated:YES completion:^{
|
|
|
nextVC.view.superview.backgroundColor = [UIColor clearColor];
|