- initWithRequest:delegate:
The path for the downloaded file. ダウンロードされたファイルに対するパス。
Availability 有効性
Technology
- (void)setDestination:(NSString
*)path
allowOverwrite:(BOOL)allowOverwrite;
path
The path for the downloaded file. ダウンロードされたファイルに対するパス。
allowOverwrite
YES
if an existing file at path
can be replaced, NO
otherwise.
YES
、もしpath
での既存のファイルが置き換えられることができるならば、そうでなければNO
。
If allow
is NO
and a file already exists at path
, a unique filename will be created for the downloaded file by appending a number to the filename. The delegate can implement the download:
delegate method to determine the filename used when the file is written to disk.
allow
がNO
であるそしてファイルが既にpath
で存在するならば、特有なファイル名がダウンロードされたファイルに対してそのファイル名に番号を追加することによって作成されます。委任先は、download:
委任先メソッドを実装することで、ファイルがディスクに書き込まれる時に利用されるファイル名を決定できます。
An NSURLDownload
instance ignores multiple calls to this method.
NSURLDownload
インスタンスは、このメソッドに対する複数の呼び出しを無視します。
- initWithRequest:delegate:
- download:decideDestinationWithSuggestedFilename:
download
has determined a suggested filename for the downloaded file.
委任先はこのメッセージを、download
がダウンロードされたファイルに対する提案ファイル名を決定した時に受け取ります。
- download:didCreateDestination: