Instance Property インスタンスプロパティ

delegate

The delegate of the file manager object. ファイルマネージャオブジェクトの委任先。

Declaration 宣言

unowned(unsafe) var delegate: FileManagerDelegate? { get set }

Discussion 議論

It is recommended that you assign a delegate to the file manager object only if you allocated and initialized the object yourself. Avoid assigning a delegate to the shared file manager obtained from the default method. あなたがある委任先をファイルマネージャオブジェクトに割り当てることが推奨されるのは、あなた自身でオブジェクトをアロケートして初期化した場合にのみです。委任先をdefaultメソッドから取得される共有ファイルマネージャに割り当てることは避けてください。

The default value of this property is nil. When assigning a delegate to this property, your object must conform to the FileManagerDelegate protocol. このプロパティの省略時の値はnilです。委任先をこのプロパティに割り当てる場合、あなたのオブジェクトはFileManagerDelegateプロトコルに準拠しなければなりません。