Type Method 型メソッド

propertyList(from:options:format:)

Creates and returns a property list from the specified data. プロパティリストをこの指定されたデータから作成して返します。

Declaration 宣言

class func propertyList(from data: Data, 
                options opt: PropertyListSerialization.ReadOptions = [], 
                 format: UnsafeMutablePointer<PropertyListSerialization.PropertyListFormat>?) throws -> Any

Parameters パラメータ

data

A data object containing a serialized property list. シリアライズされたプロパティリストを含んでいるデータオブジェクト。

opt

The options used to create the property list. For possible values, see PropertyListSerialization.MutabilityOptions. プロパティリストを作成するのに使われるオプション。可能な値として、PropertyListSerialization.MutabilityOptionsを見てください。

format

Upon return, contains the format that the property list was stored in. Pass nil if you do not need to know the format. 戻りでは、プロパティリストがそれにおいて格納されたところのフォーマットを含みます。あなたがそのフォーマットを知る必要がないならば、nilを渡してください。

error

If the method does not complete successfully, upon return contains an NSError object that describes the problem. メソッドがうまく完了しないならば、戻りでは問題を記述するNSErrorオブジェクトを含みます。

Return Value 戻り値

A property list object corresponding to the representation in data. If data is not in a supported format, returns nil. dataにおける表現に相当するプロパティリストオブジェクト。dataがサポートされるフォーマットでないならば、nilを返します。

Discussion 議論

See Also 参照

Deserializing a Property List プロパティリストをデシリアライズする