class func writePropertyList (Any, to: OutputStream, format: PropertyListSerialization.PropertyListFormat, options: PropertyListSerialization.WriteOptions, error: NSErrorPointer) -> Int
A property list object. プロパティリストオブジェクト。
NSData
object containing a given property list in a specified format.
あるNSData
オブジェクトを返します、与えられたプロパティリストをある指定されたフォーマットで含んでいます。
Availability 有効性
Technology
class func data(fromPropertyList plist: Any,
format: PropertyListSerialization
.PropertyListFormat
,
options opt: PropertyListSerialization
.WriteOptions
) throws -> Data
plist
A property list object. プロパティリストオブジェクト。
format
A property list format. For possible values, see Property
.
プロパティリストフォーマット。可能な値として、Property
を見てください。
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
オブジェクトを含みます。
An NSData
object containing plist
in the format specified by format
.
あるNSData
オブジェクト、plist
をformat
によって指定されるフォーマットで含んでいます。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns a nonoptional result and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドは非オプショナルの結果を返します、そしてthrows
キーワードで印されて失敗の場合にそれがエラーをスローすることを指し示します。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
class func writePropertyList (Any, to: OutputStream, format: PropertyListSerialization.PropertyListFormat, options: PropertyListSerialization.WriteOptions, error: NSErrorPointer) -> Int