獲得主要包
- 使用 Cocoa 獲取對主 bundle 的引用。
要在 Cocoa 應用程式中獲取主包,請呼叫 NSBundle 類的 mainBundle 類方法。 ****
NSBundle *mainBundle; // Get the main bundle for the app; mainBundle = [NSBundle mainBundle];
- 使用 Core Foundation 獲取對主包的引用。
使用 CFBundleGetMainBundle 函式檢索基於 C 的應用程式的主包。
CFBundleRef mainBundle; // Get the main bundle for the app mainBundle = CFBundleGetMainBundle();