Instance Property
インスタンスプロパティ
isConflict
A Boolean value indicating whether the contents of the version are in conflict with the contents of another version.
あるブール値、それはバージョンの内容が別のバージョンの内容と衝突しているかどうかを指し示します。
Declaration
宣言
var isConflict: Bool
{ get }
Discussion
議論
When two or more versions of a file are written at the same time, perhaps because the file is saved in the cloud and one or more of the writers were offline when they were writing, the system attempts to resolve the conflict automatically. It does this by picking one of the file versions to be the current file and setting this property to true
for the other file versions that are in conflict.
あるファイルの複数のバージョンが同じ時に書き込まれる場合、おそらくそのファイルがクラウドに保存されるそして1つ以上の書き込み手がそれらが書き込まれていた時オフラインだったため、システムは衝突を自動的に解決しようとします。それはこれをファイルバージョンの1つを選んで現在のファイルにすること、そして衝突する他のファイルバージョンに対してこのプロパティをtrue
に設定することで行います。
See Also
参照
Handling Version Conflicts
バージョン衝突を処理する
var isResolved: Bool
A Boolean value that indicates the version object is not in conflict (true
) or is in conflict (false
).
あるブール値、それはバージョンオブジェクトが衝突しない(true
)または衝突する(false
)ことを指し示します。