二进制再次被拒绝。怎么做?

Binary Rejected once again. How to do?

我对每条路径的代码进行了以下更改,但二进制文件再次被拒绝。

NSURL *URL = [NSURL fileURLWithPath:photoPath];
[URL setResourceValue:@(YES) forKey:NSURLIsExcludedFromBackupKey error:nil];

1) 第一次拒绝 :

On launch and content download, your app stores 38+ MB on the user's iCloud, which does not comply with the iOS Data Storage Guidelines.

2) 第二次拒绝:

On launch and content download, your app stores 17+ on the user's iCloud, which does not comply with the iOS Data Storage Guidelines.

请告诉我如何解决?

您错误地使用了 iCloud。请参阅 Apple:https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/iCloud.html

Respect the user’s iCloud space. It’s important to remember that iCloud is a finite resource for which users pay. You should use iCloud for storing information that users create and understand, and avoid using it to store app resources or content that you can regenerate. Also, note that when the user’s iCloud account is active, iCloud automatically backs up the contents of your app’s Documents folder. To avoid using up too much of the user’s space, it’s best to be picky about the content you place in the Documents folder.

使用最少的 iCloud space 并避免使用 iCloud 在 iCloud space.

中存储资源和您以后可以复制的其他数据