Type Method 型メソッド

data(fromPropertyList:format:options:)

Returns an NSData object containing a given property list in a specified format. あるNSDataオブジェクトを返します、与えられたプロパティリストをある指定されたフォーマットで含んでいます。

Declaration 宣言

class func data(fromPropertyList plist: Any, 
         format: PropertyListSerialization.PropertyListFormat, 
        options opt: PropertyListSerialization.WriteOptions) throws -> Data

Parameters パラメータ

plist

A property list object. プロパティリストオブジェクト。

format

A property list format. For possible values, see PropertyListSerialization.PropertyListFormat. プロパティリストフォーマット。可能な値として、PropertyListSerialization.PropertyListFormatを見てください。

opt

The opt parameter is currently unused. No options should be specified. optパラメータは、現在使われません。オプションは指定されるべきではありません。

error

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

Return Value 戻り値

An NSData object containing plist in the format specified by format. あるNSDataオブジェクト、plistformatによって指定されるフォーマットで含んでいます。

Discussion 議論

See Also 参照

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