Version: 2019.3

PlistDocument

class in UnityEditor.iOS.Xcode

マニュアルに切り替える

説明

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

変数

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.

コンストラクタ

PlistDocumentCreates a new property list document instance.

Public 関数

CreateCreate a new property list Document.
ReadFromFile指定したパスのファイルからドキュメントを読み込みます。
ReadFromStreamTextReader からプロジェクトを読み込みます。
ReadFromString指定した文字列からドキュメントを読み込みます。
WriteToFile指定したファイルにプロジェクトの内容を書き込みます。
WriteToStreamドキュメントの内容を指定の TextReader に書き込みます。
WriteToStringドキュメントの内容を文字列として取得します。