Instance Property
インスタンスプロパティ
conflict
A Boolean value indicating whether the contents of the version are in conflict with the contents of another version.
あるブール値、それはバージョンの内容が別のバージョンの内容と衝突しているかどうかを指し示します。
Declaration
宣言
@property(readonly, getter=isConflict) BOOL conflict;
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 YES
for the other file versions that are in conflict.
あるファイルの複数のバージョンが同じ時に書き込まれる場合、おそらくそのファイルがクラウドに保存されるそして1つ以上の書き込み手がそれらが書き込まれていた時オフラインだったため、システムは衝突を自動的に解決しようとします。それはこれをファイルバージョンの1つを選んで現在のファイルにすること、そして衝突する他のファイルバージョンに対してこのプロパティをYES
に設定することで行います。
See Also
参照
Handling Version Conflicts
バージョン衝突を処理する
resolved
A Boolean value that indicates the version object is not in conflict (YES
) or is in conflict (NO
).
あるブール値、それはバージョンオブジェクトが衝突しない(YES
)または衝突する(NO
)ことを指し示します。