Type Method 型メソッド

URLHandleClassForURL:

Returns the class of the URL handle that will be used for a specified URL. 指定されたURLに対して使われるURLハンドルのクラスを返します。

Declaration 宣言

+ (Class)URLHandleClassForURL:(NSURL *)anURL;

Parameters パラメータ

aURL

The URL in question. 質問におけるURL。

Return Value 戻り値

The class of the URL handle that will be used for aURL. aURLに対して使われるURLハンドルのクラス。

Discussion 議論

Subclasses of NSURLHandle must be registered via the registerURLHandleClass: method. The subclass is determined by asking the list of registered subclasses if it canInitWithURL:; the first class to respond YES is selected. NSURLHandleのサブクラスは、registerURLHandleClass:メソッド経由で登録されなければなりません。サブクラスは、登録されたサブクラスのリストに、それがcanInitWithURL:かどうか尋ねることによって決定されます;YESと答える最初のクラスが選択されます。

See Also 参照

Managing subclasses サブクラスを管理する