说明书更改为内置图片,微信登陆时更换手机号加强验证
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@
|
||||
// CFShow((__bridge CFTypeRef)(infoDic));
|
||||
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
||||
NSLog(@"app_Version%@",app_Version);
|
||||
app_Version=@"4.7.7";
|
||||
app_Version=@"4.7.8";
|
||||
NSString *versionStr = [NSString stringWithFormat:@"v%@",app_Version];
|
||||
NSString *buildVersion = [infoDic objectForKey:@"CFBundleVersion"];
|
||||
if (buildVersion.length > 0) {
|
||||
|
||||
+5
-2
@@ -27,8 +27,11 @@
|
||||
[self addTitleViewWithTitle:@"更换手机号"];
|
||||
//self.title = @"更换手机号";
|
||||
UserModel*model=[[DataCenter defaultDtacenter]valueForKey:@"UserLogIn"];
|
||||
NSMutableString*string=[[NSMutableString alloc]initWithString:model.phoneNumber];
|
||||
[string replaceCharactersInRange:NSMakeRange(3, 4) withString:@"***"];
|
||||
NSMutableString*string=[[NSMutableString alloc]initWithString:[CommonUtils getNotNilStr:model.phoneNumber]];
|
||||
if (string.length>7) {
|
||||
[string replaceCharactersInRange:NSMakeRange(3, 4) withString:@"***"];
|
||||
|
||||
}
|
||||
self.yuanTelPhone.text=string;
|
||||
[self.timerbutton addTarget:self action:@selector(startTime) forControlEvents:UIControlEventTouchUpInside];
|
||||
[self textStyle];
|
||||
|
||||
Reference in New Issue
Block a user