iPhoneのドキュメントフォルダにアプリ内購入データを保存するため、自分のアプリが拒否されました。NSURLIsExcludedFromBackupKeyまたはkCFURLIsExcludedFromBackupKeyの使用方法は?
Data that can be recreated but must persist for proper functioning of your app - or because customers expect it to be available for offline use - should be marked with the "do not back up" attribute. For
NSURL
objects, add theNSURLIsExcludedFromBackupKey
attribute to prevent the corresponding file from being backed up. ForCFURLRef
objects, use the correspondingkCFURLIsExcludedFromBackupKey
attribute.
は、しかし、私は、彼らがオフラインになっている場合でも、ユーザーがデータを使用したいので、私はkCFURLIsExcludedFromBackupKey
またはNSURLIsExcludedFromBackupKey
使用します。彼らの違いは何ですか?
質問は、それらのいずれかを使用する方法であり、それは何を返し、どのように私は、これはデータを返さ使用することができますか?
、その後、私は通常、URLからデータを取得します?それはそれです..私は結果とどうすればいいですか? –
'if(結果==いいえ){NSLog(@"エラー:%@ "、エラー); } ' –