conflict
+ unresolvedConflictVersionsOfItemAtURL:
YES
) or is in conflict (NO
).
あるブール値、それはバージョンオブジェクトが衝突しない(YES
)または衝突する(NO
)ことを指し示します。
Availability 有効性
Technology
@property(getter=isResolved) BOOL resolved;
When the system detects a conflict involving versions of a file, it sets this property to NO
to indicate an unresolved conflict. After you resolve the conflict, set this property to YES
to tell the system it is resolved; you must then remove any versions of the file that are no longer useful.
システムがあるファイルのバージョンに関係する衝突を見つける時、それはこのプロパティをNO
に設定して未解決の衝突を指摘します。あなたが衝突を解決した後、このプロパティをYES
に設定してシステムにそれが解決されたことを伝えてください;あなたはそれからもはや役に立たない、そのファイルのあらゆるバージョンを取り除かなければなりません。
Important 重要
If you do not explicitly remove versions of a file that are no longer useful, iCloud continues to sync them to all a user’s devices and those versions continue to consume user iCloud quota. あなたがもはや役に立たない、あるファイルのバージョンそれらを明示的に取り除かないならば、iCloudはそれらの同期をあるユーザのデバイスすべてに対して継続します、そしてそれらのバージョンはユーザのiCloud割当量を消費し続けます。
To remove an unused version of a file, call the remove
method. To remove all unused versions of a file, call the remove
method.
ファイルの使われないあるバージョンを取り除くには、remove
メソッドを呼び出してください。ファイルの使われない全てのバージョンを取り除くには、remove
メソッドを呼び出してください。
Important 重要
Never set the value of this property to NO
. If you do, the system raises an exception.
決してこのプロパティの値をNO
に設定しないでください。あなたがそうするならば、システムは例外を引き起こします。
Resolving a conflict causes the file version object to be removed from any reports about conflicting versions, such as those returned by the unresolved
method.
ある衝突を解決することは、そのファイルバージョンオブジェクトがバージョン衝突についてのあらゆるリポート、例えばunresolved
メソッドによって返されるものなどから取り除かれることを引き起こします。
conflict
+ unresolvedConflictVersionsOfItemAtURL: