+ canInitWithTask:
Determines whether the protocol subclass can handle the specified task.
プロトコルサブクラスがこの指定されたタスクを取り扱えるかどうかを決定します。
Availability 有効性
Technology
+ (BOOL)canInitWithRequest:(NSURLRequest
*)request;
request
The request to be handled. 取り扱われることになるリクエスト。
YES
if the protocol subclass can handle request
, otherwise NO
.
YES
、もしプロトコルサブクラスがrequest
を取り扱うことができるならば、そうでなければNO
。
A subclass should inspect request
and determine whether or not the implementation can perform a load with that request.
サブクラスは、request
を調査して、そしてその実装がこのリクエストでロードを実行できるか否かを決定すべきです。
This is an abstract method and subclasses must provide an implementation. これは抽象メソッドです、そしてサブクラスは実装を提供しなければなりません。
+ canInitWithTask: