Instance Property インスタンスプロパティ

isResolved

A Boolean value that indicates the version object is not in conflict (true) or is in conflict (false). あるブール値、それはバージョンオブジェクトが衝突しない(true)または衝突する(false)ことを指し示します。

Declaration 宣言

var isResolved: Bool { get set }

Discussion 議論

When the system detects a conflict involving versions of a file, it sets this property to false to indicate an unresolved conflict. After you resolve the conflict, set this property to true to tell the system it is resolved; you must then remove any versions of the file that are no longer useful. システムがあるファイルのバージョンに関係する衝突を見つける時、それはこのプロパティをfalseに設定して未解決の衝突を指摘します。あなたが衝突を解決した後、このプロパティをtrueに設定してシステムにそれが解決されたことを伝えてください;あなたはそれからもはや役に立たない、そのファイルのあらゆるバージョンを取り除かなければなりません。

To remove an unused version of a file, call the remove() method. To remove all unused versions of a file, call the removeOtherVersionsOfItem(at:) method. ファイルの使われないあるバージョンを取り除くには、remove()メソッドを呼び出してください。ファイルの使われない全てのバージョンを取り除くには、removeOtherVersionsOfItem(at:)メソッドを呼び出してください。

Resolving a conflict causes the file version object to be removed from any reports about conflicting versions, such as those returned by the unresolvedConflictVersionsOfItem(at:) method. ある衝突を解決することは、そのファイルバージョンオブジェクトがバージョン衝突についてのあらゆるリポート、例えばunresolvedConflictVersionsOfItem(at:)メソッドによって返されるものなどから取り除かれることを引き起こします。

See Also 参照

Handling Version Conflicts バージョン衝突を処理する