有没有办法以编程方式确定安装的iOS版本是来自TestFlight(测试版)还是生产版(App Store)?为了简化应用内购买的测试,我想禁用Beta版测试人员的整个商店流程。
在Objective-C和Swift中提供答案的奖励点。
答案 0 :(得分:1)
试试这段代码:
if ([[NSBundle mainBundle] pathForResource:@"embedded"
ofType:@"mobileprovision"]) {
// not from app store, eg: testflight or others
} else {
// from app store
}
来自here
的回答