Contents

writePropertyList(_:to:format:options:error:)

Writes a property list to the specified stream.

Declaration

class func writePropertyList(_ plist: Any, to stream: OutputStream, format: PropertyListSerialization.PropertyListFormat, options opt: PropertyListSerialization.WriteOptions, error: NSErrorPointer) -> Int

Parameters

  • plist:

    The property list that you want to write out.

  • stream:

    An Outputstream instance that is open and ready to receive the property list data.

  • format:

    One of the property list formats defined in Propertylistformat.

  • opt:

    Currently unused. Set to 0.

  • error:

    A pointer that the function may set to an Nserror object when an error occurs to provide additional information about the error.

Return Value

The number of bytes written to the stream. A return value of 0 indicates that an error occurred.

See Also

Serializing a Property List