gpt4 book ai didi

ios - 检测应用程序是否是临时的

转载 作者:行者123 更新时间:2023-11-29 03:02:27 25 4
gpt4 key购买 nike

我的服务器中有一个用于测试的 URL,另一个用于生产的 URL。

在我的代码中的某个时刻,我这样做了:

#ifdef DEBUG
static NSString * const url = "http://sandbox.myserver.com";
#else
static NSString * const url = "http://live.myserver.com";
#endif

当我在 Xcode 上调试应用程序时,这工作正常,但如果我将应用程序的临时版本发送给 Beta 测试人员,它将失败。即席应用程序将使用生产 URL,而不是沙盒 URL。

进行此测试的正确方法是什么?

最佳答案

简而言之:

var data = String($.NSString.stringWithContentsOfFileEncodingError($.NSBundle.mainBundle.pathForResourceOfType('embedded', 'mobileprovision'), $.NSISOLatin1StringEncoding, null));
data = data.slice(data.indexOf('<plist'));
data = data.slice(0, data.indexOf('</plist>')+8);
data = $.NSString.stringWithString(data).dataUsingEncoding($.NSISOLatin1StringEncoding);
var mobileProvision = $.NSPropertyListSerialization.propertyListWithDataOptionsFormatError(data, $.NSPropertyListImmutable, null, null);
if (mobileProvision.valueForKey('ProvisionedDevices')) {
res.debug = 'adhoc';
} else {
res.debug = false;
}

关于ios - 检测应用程序是否是临时的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23161261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com