修复bug

This commit is contained in:
liyuhua
2023-09-28 00:40:24 +08:00
parent b221200072
commit 85244ecae5
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ isPhoneXSeries = [[UIApplication sharedApplication] delegate].window.safeAreaIns
#define PI_App_Version @"2.0.7"
#ifdef DEBUG
#define API_HOST_URL [NSString stringWithFormat:@"%@%@",@"http://beta.api",@".pekolive.com"]

View File

@@ -77,7 +77,7 @@
_versionLabel = [[UILabel alloc] init];
_versionLabel.font = [UIFont systemFontOfSize:12];
_versionLabel.textColor = [DJDKMIMOMColor mainTextColor];
_versionLabel.text = [NSString stringWithFormat:@"V%@",[YYUtility appVersion]];
_versionLabel.text = [NSString stringWithFormat:@"V%@",PI_App_Version];
}
return _versionLabel;
}