Type Property 型プロパティ

main

Returns the bundle object that contains the current executable. 現在の実行可能ファイルを含んでいるバンドルオブジェクトを返します。

Declaration 宣言

class var main: Bundle { get }

Return Value 戻り値

The NSBundle object corresponding to the bundle directory that contains the current executable. This method may return a valid bundle object even for unbundled apps. It may also return nil if the bundle object could not be created, so always check the return value. 現在の実行可能ファイルを含んでいるバンドルディレクトリに一致するNSBundleオブジェクト。このメソッドは、バンドルされないアプリに対してさえ有効なバンドルオブジェクトを返すかもしれません。それはまたバンドルオブジェクトが作成されることができなかったならばnilを返します、なので常に戻り値を確認してください。

Discussion 議論

The main bundle lets you access the resources in the same directory as the currently running executable. For a running app, the main bundle offers access to the app’s bundle directory. For code running in a framework, the main bundle offers access to the framework’s bundle directory. メインバンドルは、あなたに同じディレクトリの中のリソースへ現在動作中の実行可能ファイルとしてアクセスを許します。実行中のアプリに対して、メインバンドルはアプリの持つバンドルディレクトリへのアクセスを提供します。実行中のフレームワークに対して、メインバンドルはフレームワークの持つバンドルディレクトリへのアクセスを提供します。

See Also 参照

Getting Standard Bundle Objects 標準バンドルオブジェクトを取得する

Related Documentation 関連文書