class func dataFromPropertyList (Any, format: PropertyListSerialization.PropertyListFormat, errorDescription : UnsafeMutablePointer<NSString?>?) -> Data?
Use property
instead.
property
を代わりに使ってください。
data(fromPropertyList:format:options:)
instead.
このメソッドは非推奨にされます。data(fromPropertyList:format:options:)
を代わりに使ってください。
Deprecated 非推奨
Use property
instead.
property
を代わりに使ってください。
Availability 有効性
Technology
class func propertyListFromData(_ data: Data
,
mutabilityOption opt: PropertyListSerialization
.MutabilityOptions
= [],
format: UnsafeMutablePointer
<PropertyListSerialization
.PropertyListFormat
>?,
errorDescription errorString: UnsafeMutablePointer
<NSString
?>?) -> Any?
data
A data object containing a serialized property list. シリアライズされたプロパティリストを含んでいるデータオブジェクト。
opt
The options used to create the property list. For possible values, see Property
.
プロパティリストを作成するのに使われるオプション。可能な値として、Property
を見てください。
format
If the property list is valid, upon return contains the format. format
can be nil
, in which case the property list format is not returned. For possible values, see Property
.
プロパティリストが有効ならば、戻りではフォーマットを含みます。format
はnil
であることができます、その場合にはプロパティリストフォーマットは返されません。可能な値として、Property
を見てください。
errorString
Upon return, if the conversion is successful, error
is nil
. If the conversion fails, upon return contains a string describing the nature of the error.
戻りでは、変換が成功であるならば、error
はnil
です。変換が失敗するならば、戻りではエラーの本質を記述している文字列を含みます。
A property list object corresponding to the representation in data
. If data is not in a supported format, returns nil
.
data
における表現に相当するプロパティリストオブジェクト。dataがサポートされるフォーマットでないならば、nil
を返します。
class func dataFromPropertyList (Any, format: PropertyListSerialization.PropertyListFormat, errorDescription : UnsafeMutablePointer<NSString?>?) -> Data?
class func propertyList (from: Data, options: PropertyListSerialization.ReadOptions, format: UnsafeMutablePointer<PropertyListSerialization.PropertyListFormat>?) -> Any