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

presentedSubitemDidChangeAtURL:

Tells the delegate that the contents or attributes of the specified item changed. 指定された項目の内容または属性が変更されたことを、委任先に伝えます。

Declaration 宣言

- (void)presentedSubitemDidChangeAtURL:(NSURL *)url;

Parameters パラメータ

url

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

Discussion 議論

This method is relevant for applications that present directories. This might occur if the delegate manages the contents of a directory or manages a file that is implemented as a file package. Your implementation of this method should take whatever actions necessary to handle the change in content or attributes of the specified item. このメソッドは、ディレクトリを提示するアプリケーションに関係があるものです。これは、委任先がディレクトリの内容を管理するまたはファイルパッケージとして実装されるファイルを管理するならば、見られるかもしれません。このメソッドのあなたの実装は、指定された項目の内容または属性における変更を取り扱うのに不可欠なアクションは何であれ受け取るべきです。

If the presented directory is a file package, the system calls the presentedItemDidChange method if your delegate does not implement this method. 提示されたディレクトリがファイルパッケージならば、システムはpresentedItemDidChangeメソッドを、もしあなたの委任先がこのメソッドを実装しないならば呼び出します。

See Also 参照

Handling Changes to a Presented Directory 提示されたディレクトリに対する変更を取り扱う