NSURLIsExcludedFromBackupKey can not be set correctly

后端 未结 2 910
一整个雨季
一整个雨季 2021-01-31 11:29

I am trying to prevent a whole folder from beeing backed up by itunes. I followed the Technical Report http://developer.apple.com/library/ios/#qa/qa1719/_index.html But it seems

2条回答
  •  迷失自我
    2021-01-31 12:18

    Same problem for me. I also solved it changing the way I called addSkipBackupAttributeToItemAtURL That's the correct way:

    [MyClass addSkipBackupAttributeToItemAtURL:[NSURL fileURLWithPath:path]];
    

提交回复
热议问题