- initWithResponse:data:userInfo:storagePolicy:
Creates a cached URL response object with a given server response, data, user-info dictionary, and storage policy.
キャッシュされたURL応答オブジェクトを、ある与えられたサーバー応答、データ、ユーザ情報辞書、そしてストレージポリシーで作成します。
Availability 有効性
Technology
- (instancetype)initWithResponse:(NSURLResponse
*)response
data:(NSData
*)data;
response
The response to cache. キャッシュする応答。
data
The data to cache. キャッシュするデータ。
A cached URL response object, containing the response and data. キャッシュされたURL応答オブジェクト、応答およびデータを含んでいます。
The cache storage policy is set to the default, NSURLCache
, and the user info dictionary is set to nil
.
キャッシュストレージ方針は、省略時の状態、NSURLCache
に設定され、そしてユーザ情報辞書はnil
に設定されます。
- initWithResponse:data:userInfo:storagePolicy: