Instance Method インスタンスメソッド

presentedSubitem(at:didLose:)

Tells the delegate that the item inside the presented directory lost an existing version. 提示されたディレクトリ内の項目が既存のバージョンを失ったことを、委任先に伝えます。

Declaration 宣言

optional func presentedSubitem(at url: URL, 
                       didLose version: NSFileVersion)

Parameters パラメータ

url

The URL of the item inside the presented directory that lost a version. The item need not be at the top level of the presented directory but may itself be inside a nested subdirectory. 提示されたディレクトリ内の、あるバージョンを失った項目のURL。項目はこの提示されたディレクトリのトップレベルにある必要はなく、入れ子にされた下位ディレクトリ内にそれ自身はあるかもしれません。

version

The file version object containing information about the version that was removed. 取り除かれたバージョンについての情報を含んでいるファイルバージョンオブジェクト。

Discussion 議論

Your delegate can use this method to determine how to handle the loss of the specified file version. For an old version, you might not have to do anything. However, if your application is currently using the lost version, you would need to update your application’s user interface or prompt the user about how to proceed. あなたの委任先はこのメソッドを使って、その指定されたファイルバージョンの喪失をどのように取り扱うかを決定できます。古いバージョンに対して、あなたは何もしなくてもいいかもしれません。しかしながら、あなたのアプリケーションが失ったバージョンを現在使っているならば、あなたは、あなたのアプリケーションのユーザインターフェイスを更新するまたはどのように続行するかについてユーザに促す必要があるでしょう。

See Also 参照

Responding to Version Changes バージョン変更に応答する