func propertyList () -> Any
NSString
, NSData
, NSArray
, or NSDictionary
object, according to the topmost element.
レシーバをプロパティリストのテキスト表現として構文解析します、1番上の要素に従って、NSString
、NSData
、NSArray
、またはNSDictionary
オブジェクトを返します。
Availability 有効性
Technology
func propertyListFromStringsFileFormat() -> [AnyHashable
: Any]?
A dictionary object initialized with the keys and values found in the receiver レシーバにおいて見つかったキーと値で初期化される辞書オブジェクト。
The receiver must contain text in the format used for .strings
files. In this format, keys and values are separated by an equal sign, and each key-value pair is terminated with a semicolon. The value is optional—if not present, the equal sign is also omitted. The keys and values themselves are always strings enclosed in straight quotation marks. Comments may be included, delimited by /*
and */
as for ANSI C comments. Here’s a short example of a strings file:
レシーバは、.strings
ファイルに対して使われる書式設定でテキストを含まなければなりません。この書式設定において、キーと値は等号で隔てられます、そして各キー値ペアはセミコロンで終端されます。この値は随意です — 存在しないならば、等号もまた省かれます。キーと値それら自体は、常に垂直引用符に囲まれた文字列です。コメントが含まれるかもしれません、/*
と*/
で境界決定されます、ANSI Cコメントに対するように。ここに文字列ファイルの短い例があります:
func propertyList () -> Any
NSString
, NSData
, NSArray
, or NSDictionary
object, according to the topmost element.
レシーバをプロパティリストのテキスト表現として構文解析します、1番上の要素に従って、NSString
、NSData
、NSArray
、またはNSDictionary
オブジェクトを返します。
class func string(withContentsOfFile : String) -> Any?