问题描述
我对每条路径的代码进行了以下更改,但二进制文件再次被拒绝.
I did below changes in my code on every path but once again the Binary was rejected.
NSURL *URL = [NSURL fileURLWithPath:photoPath];
[URL setResourceValue:@(YES) forKey:NSURLIsExcludedFromBackupKey error:nil];
1) 第一次拒绝:
在启动和内容下载时,您的应用会在用户的iCloud,不符合 iOS 数据存储指南.
2) 第二次拒绝:
在启动和内容下载时,您的应用会在用户的iCloud,不符合 iOS 数据存储指南.
请告诉我如何修复它?
推荐答案
您错误地使用了 iCloud.请参阅 Apple:https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/iCloud.html
You are using iCloud wrongly. See this by Apple: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/iCloud.html
尊重用户的 iCloud 空间.请务必记住,iCloud 是用户付费的有限资源.您应该使用 iCloud 来存储用户创建和理解的信息,并避免使用它来存储您可以重新生成的应用程序资源或内容.另请注意,当用户的 iCloud 帐户处于活动状态时,iCloud 会自动备份您应用程序的 Documents 文件夹中的内容.为避免占用过多用户空间,最好对放置在 Documents 文件夹中的内容有所挑剔.
使用最少的 iCloud 空间,避免使用 iCloud 在 iCloud 空间中存储资源和其他您可以在以后重现的数据.
Use minimal amount of iCloud space and avoid using iCloud to store resources and other data which you can reproduce later, in iCloud space.
这篇关于二进制再次被拒绝.怎么做?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!