Instance Property
インスタンスプロパティ
infoDictionary
A dictionary, constructed from the bundle’s Info.plist
file, that contains information about the receiver.
ある辞書、バンドルのもつInfo.plist
ファイルから組み立てられます、それはレシーバについての情報を含みます。
Declaration
宣言
var infoDictionary: [String
: Any]? { get }
Discussion
議論
If the bundle does not contain an Info.plist
file, this dictionary contains only private keys that are used internally by the Bundle
class. The Bundle
class may add extra keys to this dictionary for its own use. Common keys for accessing the values of the dictionary are CFBundleIdentifier
, NSMainNibFile
, and NSPrincipalClass
.
バンドルがInfo.plist
ファイルを含まないならば、この辞書はプライベートキーそれらのみを含みます、それらは内部的にBundle
クラスによって使われます。Bundle
クラスは、それ自身の利用のために追加のキーをこの辞書に加えるかもしれません。辞書の値にアクセスするための通常のキーは、CFBundleIdentifier
、NSMainNibFile
、そしてNSPrincipalClass
です。
See Also
参照
Getting Bundle Information
バンドル情報を取得する
var bundleURL: URL
The full URL of the receiver’s bundle directory.
レシーバの持つバンドルディレクトリの完全URL。
Related Documentation
関連文書
+ dictionaryWithContentsOfFile:
Creates a dictionary using the keys and values found in a file specified by a given path.
与えられたパスによって指定されるファイルで見つけられるキーと値を使って辞書を作成します。