Skip to content

Commit

Permalink
【APP】连连APP iOS隐私合规整改问题和解决方案:问题1 密码登录页面添加需勾选用户协议判断逻辑
Browse files Browse the repository at this point in the history
Tapd: http://tapd.oa.com/NEW_IOT/prong/stories/view/1020393192871147007

Change-Id: Id29e80b257c02c5510642421fb0be173edb5dc27
  • Loading branch information
ccharlesren committed Dec 30, 2021
1 parent ae09efc commit e8aa6ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,11 @@ - (void)loginStyleChange:(UIButton *)sender {

- (void)loginSure {

if (!self.procolBtn.selected) {
[MBProgressHUD showError:NSLocalizedString(@"agree_userAgreement_privacyPolicy", @"请同意用户协议和隐私协议后才能登录")];
return;
}

[self savePhoneOrEmailAccount];

NSDictionary *tmpDic = nil;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -975,3 +975,4 @@ If the problem still persists, we recommend you remove the device and add it aga
"content_copy_success" = "内容已复制";
"access_photo_update_avatar" = "App需要访问您的相册用于上传头像";
"turnon_photo_authorization" = "前往:设置开启相册授权";
"agree_userAgreement_privacyPolicy" = "请同意用户协议和隐私协议后才能登录";
Original file line number Diff line number Diff line change
Expand Up @@ -970,3 +970,4 @@
"content_copy_success" = "内容已复制";
"access_photo_update_avatar" = "App需要访问您的相册用于上传头像";
"turnon_photo_authorization" = "前往:设置开启相册授权";
"agree_userAgreement_privacyPolicy" = "请同意用户协议和隐私协议后才能登录";

0 comments on commit e8aa6ce

Please sign in to comment.