Commit e1e0fedb authored by IOS-张 博's avatar IOS-张 博

修改首页字号,去除爱加密

parent bfb0b34a
......@@ -6781,32 +6781,7 @@
);
MARKETING_VERSION = 6.5.48;
MiSDKRun = debug;
OTHER_CFLAGS = (
"-mllvm",
"-falsify-control-flow",
"-mllvm",
"-falsify-control-flow-percentage=80",
"-mllvm",
"-falsify-control-flow-probability=20",
"-mllvm",
"-transform-operator-identically",
"-mllvm",
"-transform-operator-identically-loop=1",
"-mllvm",
"-split-basic-block",
"-mllvm",
"-split-basic-block-number=2",
"-mllvm",
"-indirection-control-flow",
"-mllvm",
"-indirection-control-flow-probability=80",
"-mllvm",
"-encrypt-constant-string",
"-mllvm",
"-encrypt-constant-string-level=1",
"-mllvm",
"-encrypt-constant-string-probability=70",
);
OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-ObjC",
"-lz",
......@@ -6883,32 +6858,7 @@
);
MARKETING_VERSION = 6.5.48;
MiSDKRun = online;
OTHER_CFLAGS = (
"-mllvm",
"-falsify-control-flow",
"-mllvm",
"-falsify-control-flow-percentage=80",
"-mllvm",
"-falsify-control-flow-probability=20",
"-mllvm",
"-transform-operator-identically",
"-mllvm",
"-transform-operator-identically-loop=1",
"-mllvm",
"-split-basic-block",
"-mllvm",
"-split-basic-block-number=2",
"-mllvm",
"-indirection-control-flow",
"-mllvm",
"-indirection-control-flow-probability=80",
"-mllvm",
"-encrypt-constant-string",
"-mllvm",
"-encrypt-constant-string-level=1",
"-mllvm",
"-encrypt-constant-string-probability=70",
);
OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-ObjC",
"-lz",
......
......@@ -69,13 +69,13 @@
self.tagView.backgroundColor = [UIColor colorWithHexString:@"FF2121"];
[self addSubview:self.tagView];
[self.tagView mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(11);
make.height.mas_equalTo(14);
make.right.mas_equalTo(self.savingsButton.mas_right).offset(10);
make.bottom.mas_equalTo(self.savingsButton.mas_top).offset(7);
}];
//标签label
self.tagLabel = [UILabel creatLabelWithSuperView:self.tagLabel title:nil titleFontSize:[UIFont qg_mediumFontOfSize:7] textColor:[UIColor whiteColor] alignment:NSTextAlignmentCenter];
self.tagLabel = [UILabel creatLabelWithSuperView:self.tagLabel title:nil titleFontSize:[UIFont qg_mediumFontOfSize:9] textColor:[UIColor whiteColor] alignment:NSTextAlignmentCenter];
[self.tagView addSubview:self.tagLabel];
[self.tagLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.inset(4);
......
......@@ -115,13 +115,13 @@
/// 检测微信是否绑定
- (void)checkWechatBinding
{
if ([NSString isEmpty:self.wechatInfoModel.openid]) {
if ([NSString isEmpty:self.wechatInfoModel.unionid]) {
return;
}
NSString * urlString = [QGLoginRequestApi urlWithQGLoginRequestServerMethod:QGLoginRequestServerMethodCheckWechatBinding];
urlString = @"http://yapi.quantgroups.com/mock/305/vcc/external/login/weChat_opId";
NSDictionary * infoDic = @{@"openId":self.wechatInfoModel.openid};
NSDictionary * infoDic = @{@"unionid":self.wechatInfoModel.unionid};
[QGHUDManager showHud:nil];
[[QGTalosNetwork shareManager] POST:urlString parameters:infoDic success:^(id _Nonnull responseObject) {
[QGHUDManager hideHud];
......@@ -447,7 +447,7 @@
// NSLog(@"identityToken: %@", identityToken);
self.appleInfoModel = [[QGAppleInfoModel alloc] init];
self.appleInfoModel.userID = userID;
self.appleInfoModel.fullName = fullName;
self.appleInfoModel.fullName = [NSString stringWithFormat:@"%@",fullName];
self.appleInfoModel.authorizationCode = authorizationCode;
self.appleInfoModel.identityToken = identityToken;
[self checkAppleBinding];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment