func decodeObject <DecodedObjectType>( of: DecodedObjectType.Type, forKey : String) -> DecodedObjectType?
Decode an object as an expected type, failing if the archived type doesn’t match.
あるオブジェクトをある期待される型としてデコードします、アーカイブされた型が一致しないならば失敗します。
func decodeObject (of: [AnyClass]?, forKey : String) -> Any?
Decode an object as one of several expected types, failing if the archived type doesn’t match any of the types.
あるオブジェクトをいくつかの期待される型の1つとしてデコードします、アーカイブされた型がそれら型のどれにも一致しないならば失敗します。
func decodeTopLevelObject () -> Any?
Decodes a previously-encoded object.
以前にエンコードされたオブジェクトをデコードします。
func decodeTopLevelObject <DecodedObjectType>( of: DecodedObjectType.Type, forKey : String) -> DecodedObjectType?
Decode an object as one of several expected types, failing if the archived type does not match.
オブジェクトをいくつかの期待される型としてデコードします、もしアーカイブ型が一致しないならば失敗します。
func decodeTopLevelObject (of: [AnyClass]?, forKey : String) -> Any?
Decode an object as one of several expected types, failing if the archived type does not match.
オブジェクトをいくつかの期待される型としてデコードします、もしアーカイブ型が一致しないならば失敗します。