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
サブクラスを管理する
+ canInitWithURL:
Returns whether a URL handle can be initialized with a given URL.
あるURLハンドルがある与えられたURLで初期化されることができるかどうかを返します。
Deprecated
非推奨
+ registerURLHandleClass:
Registers a subclass of NSURLHandle
as an available subclass for handling URLs
NSURLHandle
のあるサブクラスを、URLを取り扱うために利用可能なサブクラスとして登録します。
Deprecated
非推奨