获得主要包

  1. 使用 Cocoa 获取对主 bundle 的引用。

要在 Cocoa 应用程序中获取主包,请调用 NSBundle 类的 mainBundle 类方法。 ****

   NSBundle *mainBundle;
   // Get the main bundle for the app;
   mainBundle = [NSBundle mainBundle];
  1. 使用 Core Foundation 获取对主包的引用。

使用 CFBundleGetMainBundle 函数检索基于 C 的应用程序的主包。

   CFBundleRef mainBundle;
   // Get the main bundle for the app
   mainBundle = CFBundleGetMainBundle();