Type Method 型メソッド

requestWithURL:cachePolicy:timeoutInterval:

Creates and returns an initialized URL request with specified URL, cache policy, and timeout values. 初期化されたURLリクエストを、指定されたURL、キャッシュポリシー、そしてタイムアウト値で作成して返します。

Declaration 宣言

+ (instancetype)requestWithURL:(NSURL *)URL 
                   cachePolicy:(NSURLRequestCachePolicy)cachePolicy 
               timeoutInterval:(NSTimeInterval)timeoutInterval;

Parameters パラメータ

theURL

The URL for the new request. 新しいリクエストに対するURL。

cachePolicy

The cache policy for the new request. 新しいリクエストに対するキャッシュポリシー。

timeoutInterval

The timeout interval for the new request, in seconds. 新しいリクエストに対するタイムアウト間隔、秒で。

Return Value 戻り値

The initialized URL request. 初期化されたURLリクエスト。

See Also 参照

Creating Requests リクエストを作成する