init(contentsOf : URL, error: ())
init?(contentsOfFile : String)
Deprecated 非推奨
Use init(contents
instead.
init(contents
を代わりに使ってください。
Availability 有効性
Technology
convenience init?(contentsOf url: URL
)
aURL
An URL that identifies a resource containing a string representation of a property list whose root object is a dictionary. それのルートオブジェクトが辞書であるプロパティリストを含んでいるリソースを識別するURL。
An initialized dictionary—which might be different than the original receiver—that contains the dictionary at a
, or nil
if there is an error or if the contents of the resource are an invalid representation of a dictionary.
初期化された辞書 — それは元のレシーバとは異なるかもしれません — それはa
での辞書を含みます、またはnil
、もしエラーがあるならばまたはリソースの内容が無効な表現である辞書ならば。
The dictionary representation in the file identified by a
must contain only property list objects (NSString
, NSData
, NSDate
, NSNumber
, NSArray
, or NSDictionary
objects). For more details, see Property List Programming Guide. The objects contained by this dictionary are immutable, even if the dictionary is mutable.
a
によって識別されるファイルの中の辞書表現は、プロパティリストオブジェクト(NSString
、NSData
、NSDate
、NSNumber
、NSArray
、またはNSDictionary
オブジェクト)だけを含まなければなりません。さらなる詳細として、Property List Programming Guideを見てください。この辞書に含まれるオブジェクトは不変です、その辞書が可変だとしてもです。
init(contentsOf : URL, error: ())
init?(contentsOfFile : String)
+ dictionaryWithContentsOfURL: