我最近向 AppStore 提交了我的应用程序(等待审核;),我希望能够检测 /var/mobile/Applications/MyApp.app/iTunesMetaData.plist 上是否有元数据文件
如果有,则该应用已被购买,如果没有,则该应用已被盗版。现在我的主要问题是:苹果会允许这样做吗?我看到一些关于越狱检测的应用程序被 App Store 拒绝的帖子。
其次,我可以用这段代码吗?
NSString *filePath = @"/Var/Mobile/Applications/SystemOfADown.app/iTunesMetaData.plist";
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
// AlertView or killall this app
}
谢谢!