Version: 2017.2

PlistDocument

class in UnityEditor.iOS.Xcode

Switch to Manual

Description

Represents an Apple property list document. Documentation on property lists can be found here. https://developer.apple.com/library/content/documentation/General/Conceptual/DevPedia-CocoaCore/PropertyList.html#//apple_ref/doc/uid/TP40008195-CH44

Variables

rootThe root element of the property list document.
versionThe version of the property list document. At the moment Apple uses '1.0' for all property list files.

Constructors

PlistDocumentCreates a new property list document instance.

Public Functions

CreateCreate a new property list Document.
ReadFromFileReads the document from a file identified by the given path.
ReadFromStreamReads the project from the given text reader.
ReadFromStringReads the document from the given string.
WriteToFileWrites the project contents to the specified file.
WriteToStreamWrites the document contents to the specified text writer.
WriteToStringWrites the document contents to a string.