Generic Instance Method
総称体インスタンスメソッド
typedPayload(_:)
Decodes the user activity's user info dictionary as an instance of the specified type.
ユーザアクティビティのもつユーザ情報辞書をこの指定された型のインスタンスとしてデコードします。
Return Value
戻り値
The type-safe instance.
型安全インスタンス。
Discussion
議論
Use this method to retrieve information from the user activity's userInfo
dictionary in a type-safe manner.
このメソッドを使って、情報をユーザアクティビティのもつuserInfo
辞書からある型安全な流儀で回収してください。
If the type can’t be decoded from the userInfo
dictionary, this method throws NSUserActivity.TypedPayloadError.invalidContent
.
その型がuserInfo
辞書からデコードされることができないならば、このメソッドはNSUserActivity.TypedPayloadError.invalidContent
をスローします。
See Also
参照
Managing Type-Safe Access to User Info
ユーザ情報への型安全なアクセスを管理する
func setTypedPayload<T>(T)
Encodes the specified payload into the user activity’s user info dictionary.
指定されたペイロードをユーザアクティビティのもつユーザ情報辞書へとエンコードします。