Overview 概要
Important 重要
NSURLHandle
is deprecated in macOS 10.4 and later. Use URLSession
instead.
NSURLHandle
は、macOS 10.4以降では非推奨にされます。URLSession
を代わりに使ってください。
A single NSURLHandle
can service multiple equivalent NSURL
objects, but only if these URLs map to the same resource.
単一のNSURLHandle
が複数の等価のNSURL
オブジェクトに仕えることができます、しかしそれらのURLが同じリソースにマップする場合にのみです。
Overview 概要
Cocoa provides private concrete subclasses to handle HTTP and file URL schemes. If you want to implement support for additional URL schemes, you would do so by creating a subclass of NSURLHandle
. You can use NSURL
and NSURLHandle
to download from FTP sites without subclassing.
Cocoaは、プライベート具象サブクラスいくらかを、HTTPおよびファイルURLスキームを取り扱うために提供します。あなたが追加のURLスキームに対するサポートを実装したいならば、あなたはNSURLHandle
のサブクラスを作成することによってそうするでしょう。あなたは、NSURL
とNSURLHandle
を使うことで、FTPサイトからサブクラス作成なしにダウンロードを行えます。