- resourceValuesForKeys:error:
- getResourceValue:forKey:error:
- setResourceValues:error:
- removeAllCachedResourceValues
- removeCachedResourceValueForKey:
- setTemporaryResourceValue:forKey:
NSURLResourceKey
Availability 有効性
Technology
- (BOOL)setResourceValue:(id)value
forKey:(NSURLResourceKey
)key
error:(NSError
* _Nullable *)error;
value
The value for the resource property defined by key
.
key
によって識別されるリソースプロパティに対する値。
key
The name of one of the URL’s resource properties. URLの持つリソースプロパティの1つの名前。
error
The error that occurred if the resource value could not be set. リソース値が設定されることができなかった場合に発生したエラー。
YES
if the resource property named key
is successfully set to value
; otherwise, NO
.
YES
、もしkey
が指名するリソースプロパティがうまくvalue
に設定されるならば;そうでなければ、NO
。
This method synchronously writes the new resource value out to disk. Attempts to set a read-only resource property or to set a resource property that is not supported by the resource are ignored and are not considered errors. このメソッドは、同期的に新しいリソース値をすっかりディスクに書き込みます。読み出し専用リソースプロパティを設定するまたはリソースによってサポートされないリソースプロパティを設定する試みは、無視されます、そしてエラーとみなされません。
If an error occurs, this method returns NO
and populates the object pointer referenced by error
with additional information.
エラーが発生するならば、このメソッドはNO
を返します、そしてerror
によって参照されるオブジェクトポインタには追加情報が入れられます。
Note 注意
This method applies only to URLs for file system resources. このメソッドは、ファイルシステムリソースに対するURLにのみ適用されます。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns Void
and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドはVoid
を返します、そして失敗の場合にエラーをスローすることを指し示すためにthrows
キーワードで印されます。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
- resourceValuesForKeys:error:
- getResourceValue:forKey:error:
- setResourceValues:error:
- removeAllCachedResourceValues
- removeCachedResourceValueForKey:
- setTemporaryResourceValue:forKey:
NSURLResourceKey