Class: NSBundle

Inherits:
NSObject show all

Overview

An NSBundle object represents a location in the file system that groups code and resources that can be used in a program. NSBundle objects locate program resources, dynamically load and unload executable code, and assist in localization. You build a bundle in Xcode using one of these project types: Application, Framework, plug-ins.

Class Method Summary (collapse)

Instance Method Summary (collapse)

Methods inherited from NSObject

#!, #!=, #!~, #, #==, #===, #=~, #Rational, #__callee__, #__method__, #__send__, #__type__, `, alloc, allocWithZone:, #autoContentAccessingProxy, autoload, autoload?, autorelease_pool, #awakeAfterUsingCoder:, binding, block_given?, caller, cancelPreviousPerformRequestsWithTarget:, cancelPreviousPerformRequestsWithTarget:selector:object:, catch, class, classFallbacksForKeyedArchiver, #classForCoder, #classForKeyedArchiver, classForKeyedUnarchiver, #clone, conformsToProtocol:, #copy, copyWithZone:, #dealloc, #define_singleton_method, description, display, #doesNotRecognizeSelector:, #dup, #enum_for, #eql?, #equal?, #extend, fail, #finalize, format, #forwardInvocation:, #forwardingTargetForSelector:, framework, #freeze, #frozen?, getpass, gets, global_variables, #init, initialize, #initialize_clone, #initialize_copy, #initialize_dup, #inspect, instanceMethodForSelector:, instanceMethodSignatureForSelector:, #instance_eval, #instance_exec, #instance_of?, #instance_variable_defined?, #instance_variable_get, #instance_variable_set, #instance_variables, instancesRespondToSelector:, isSubclassOfClass:, #is_a?, iterator?, #kind_of?, lambda, load, load_bridge_support_file, load_plist, local_variables, loop, #method, #methodForSelector:, #methodSignatureForSelector:, #methods, #mutableCopy, mutableCopyWithZone:, new, #nil?, open, p, #performSelector:onThread:withObject:waitUntilDone:, #performSelector:onThread:withObject:waitUntilDone:modes:, #performSelector:withObject:afterDelay:, #performSelector:withObject:afterDelay:inModes:, #performSelectorInBackground:withObject:, #performSelectorOnMainThread:withObject:waitUntilDone:, #performSelectorOnMainThread:withObject:waitUntilDone:modes:, print, printf, #private_methods, proc, #protected_methods, #public_method, #public_methods, #public_send, putc, puts, raise, rand, readline, readlines, #replacementObjectForCoder:, #replacementObjectForKeyedArchiver:, require, resolveClassMethod:, resolveInstanceMethod:, #respond_to?, #respond_to_missing?, select, #send, setVersion:, #singleton_methods, sprintf, srand, superclass, #taint, #tainted?, #tap, test, throw, #to_plist, #to_s, trace_var, trap, #trust, #untaint, untrace_var, #untrust, #untrusted?, version

Constructor Details

This class inherits a constructor from NSObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class NSObject

Class Method Details

+ (Array) allBundles

Returns an array of all the application’s non-framework bundles. The returned array includes the main bundle and all bundles that have been dynamically created but doesn’t contain any bundles that represent frameworks.

Returns:

  • (Array)

    An array of all the application’s non-framework bundles.

+ (Array) allFrameworks

Returns an array of all of the application’s bundles that represent frameworks. The returned array includes frameworks that are linked into an application when the application is built and bundles for frameworks that have been dynamically created.

Returns:

  • (Array)

    An array of all of the application’s bundles that represent frameworks. Only frameworks with one or more Objective-C classes in them are included.

+ (NSBundle) bundleForClass(aClass)

Returns the NSBundle object with which the specified class is associated.

Parameters:

  • aClass (Class)

    A class.

Returns:

  • (NSBundle)

    The NSBundle object that dynamically loaded aClass (a loadable bundle), the NSBundle object for the framework in which aClass is defined, or the main bundle object if aClass was not dynamically loaded or is not defined in a framework.

+ (NSBundle) bundleWithIdentifier(identifier)

Returns the previously created NSBundle instance that has the specified bundle identifier. This method is typically used by frameworks and plug-ins to locate their own bundle at runtime. This method may be somewhat more efficient than trying to locate the bundle using the bundleForClass: method. However, if the initial lookup of an already loaded and cached bundle with the specified identifier fails, this method uses potentially time-consuming heuristics to attempt to locate the bundle.

Parameters:

  • identifier (String)

    The identifier for an existing NSBundle instance.

Returns:

  • (NSBundle)

    The previously created NSBundle instance that has the bundle identifier identifier. Returns nil if the requested bundle is not found.

+ (NSBundle) bundleWithPath(fullPath)

Returns an NSBundle object that corresponds to the specified directory. This method allocates and initializes the returned object if there is no existing NSBundle associated with fullPath, in which case it returns the existing object.

Parameters:

  • fullPath (String)

    The path to a directory. This must be a full pathname for a directory; if it contains any symbolic links, they must be resolvable.

Returns:

  • (NSBundle)

    The NSBundle object that corresponds to fullPath, or nil if fullPath does not identify an accessible bundle directory.

+ (NSBundle) bundleWithURL(url)

Returns an NSBundle object that corresponds to the specified file URL. This method allocates and initializes the returned object if there is no existing NSBundle associated with url, in which case it returns the existing object.

Parameters:

  • url (NSURL)

    The URL to a directory. This must be a URL for a directory; if it contains any symbolic links, they must be resolvable.

Returns:

  • (NSBundle)

    The NSBundle object that corresponds to url, or nil if url does not identify an accessible bundle directory.

+ (NSBundle) mainBundle

Returns the NSBundle object that corresponds to the directory where the current application executable is located. This method allocates and initializes a bundle object if one doesn’t already exist. The new object corresponds to the directory where the application executable is located. Be sure to check the return value to make sure you have a valid bundle. This method may return a valid bundle object even for unbundled applications. In general, the main bundle corresponds to an application file package or application wrapper: a directory that bears the name of the application and is marked by a “.app” extension.

Returns:

  • (NSBundle)

    The NSBundle object that corresponds to the directory where the application executable is located, or nil if a bundle object could not be created.

+ (String) pathForResource(name, ofType:extension, inDirectory:bundlePath)

Returns the full pathname for the resource file identified by the specified name and extension and residing in a given bundle directory. The method first looks for a matching resource file in the non-localized resource directory of the specified bundle. (In OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations. For more details see Internationalization Programming Topics.Note: This method is best suited only for the occasional retrieval of resource files. In most cases where you need to retrieve bundle resources, it is preferable to use the NSBundle instance methods instead.

Parameters:

  • name (String)

    The name of a resource file contained in the directory specified by bundlePath.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file is the first file encountered that exactly matches name.

  • bundlePath (String)

    The path of a top-level bundle directory. This must be a valid path. For example, to specify the bundle directory for a Mac app, you might specify the path /Applications/MyApp.app.

Returns:

  • (String)

    The full pathname for the resource file or nil if the file could not be located. This method also returns nil if the bundle specified by the bundlePath parameter does not exist or is not a readable directory.

+ (Array) pathsForResourcesOfType(extension, inDirectory:bundlePath)

Returns an array containing the pathnames for all bundle resources having the specified extension and residing in the bundle directory at the specified path. This method provides a means for dynamically discovering multiple bundle resources of the same type. The method first looks for matching resource files in the nonlocalized resource directory of the specified bundle. (In OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) It then looks in the top level of any available language-specific “.lproj” directories. It does not recurse through other subdirectories at any of these locations. For more details see Internationalization Programming Topics.Note: This method is best suited only for the occasional retrieval of resource files. In most cases where you need to retrieve bundle resources, it is preferable to use the NSBundle instance methods instead.

Parameters:

  • extension (String)

    The file extension. If extension is an empty string or nil, the extension is assumed not to exist, all the files in bundlePath are returned.

  • bundlePath (String)

    The top-level directory of a bundle. This must represent a valid path.

Returns:

  • (Array)

    An array containing the full pathnames for all bundle resources with the specified extension. This method returns an empty array if no matching resource files are found. It also returns an empty array if the bundle specified by the bundlePath parameter does not exist or is not a readable directory.

+ (Array) preferredLocalizationsFromArray(localizationsArray)

Returns one or more localizations from the specified list that a bundle object would use to locate resources for the current user. This method does not return all localizations in preference order but only those from which NSBundle would get localized content, typically either a single non-region-specific localization or a region-specific localization followed by a corresponding non-region-specific localization as a fallback.However, clients who want all localizations in preference order can make repeated calls, each time taking the top localizations out of the list of localizations passed in.

Parameters:

  • localizationsArray (Array)

    An array of NSString objects, each of which specifies the name of a localization that the bundle supports.

Returns:

  • (Array)

    An array of NSString objects containing the preferred localizations. These strings are ordered in the array according to the current user's language preferences and are taken from the strings in the localizationsArray parameter.

+ (Array) preferredLocalizationsFromArray(localizationsArray, forPreferences:preferencesArray)

Returns the localizations that a bundle object would prefer, given the specified bundle and user preference localizations. This method does not return all localizations in preference order but only those from which NSBundle would get localized content, typically either a single non-region-specific localization or a region-specific localization followed by a corresponding non-region-specific localization as a fallback.However, clients who want all localizations in preference order can make repeated calls, each time taking the top localizations out of the list of localizations passed in.

Parameters:

  • localizationsArray (Array)

    An array of NSString objects, each of which specifies the name of a localization that the bundle supports.

  • preferencesArray (Array)

    An array of NSString objects containing the user's preferred localizations. If this parameter is nil, the method uses the current user's localization preferences.

Returns:

  • (Array)

    An array of NSString objects containing the preferred localizations. These strings are ordered in the array according to the specified preferences and are taken from the strings in the localizationsArray parameter. If none of the user-preferred localizations are available in the bundle, this method returns one of the bundle localizations.

+ (NSURL) URLForResource(name, withExtension:ext, subdirectory:subpath, inBundleWithURL:bundleURL)

Creates and returns a file URL for the resource with the specified name and extension in the specified bundle.

Parameters:

  • name (String)

    The name of the resource file.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file URL is the first file encountered that exactly matches name.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • bundleURL (NSURL)

    The file URL of the bundle to search.

Returns:

  • (NSURL)

    The file URL for the resource file or nil if the file could not be located.

+ (Array) URLsForResourcesWithExtension(ext, subdirectory:subpath, inBundleWithURL:bundleURL)

Returns an array containing the file URLs for all bundle resources having the specified filename extension, residing in the specified resource subdirectory, within the specified bundle.

Parameters:

  • ext (String)

    The file extension of the files to retrieve.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • bundleURL (NSURL)

    The file URL of the bundle to search.

Returns:

  • (Array)

    The file URL for the resource file or nil if the file could not be located.

Instance Method Details

- (String) builtInPlugInsPath

Returns the full pathname of the receiver's subdirectory containing plug-ins. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (String)

    The full pathname of the receiving bundle’s subdirectory containing plug-ins.

- (NSURL) builtInPlugInsURL

Returns the file URL of the receiver's subdirectory containing plug-ins. This method returns the appropriate path for modern application and framework bundles. This method may not return a URL for non-standard bundle formats or for some older bundle formats.

Returns:

  • (NSURL)

    The file URL of the receiving bundle’s subdirectory containing plug-ins.

- (String) bundleIdentifier

Returns the receiver’s bundle identifier.

Returns:

  • (String)

    The receiver’s bundle identifier, which is defined by the CFBundleIdentifier key in the bundle’s information property list.

- (String) bundlePath

Returns the full pathname of the receiver’s bundle directory.

Returns:

  • (String)

    The full pathname of the receiver’s bundle directory.

- (NSURL) bundleURL

Returns the full URL of the receiver’s bundle directory.

Returns:

  • (NSURL)

    The full URL of the receiver’s bundle directory.

- (Class) classNamed(className)

Returns the Class object for the specified name. If the bundle’s executable code is not yet loaded, this method dynamically loads it into memory. Classes (and categories) are loaded from just one file within the bundle directory; this code file has the same name as the directory, but without the extension (“.bundle”, “.app”, “.framework”). As a side effect of code loading, the receiver posts NSBundleDidLoadNotification after all classes and categories have been loaded; see “Notifications” for details.

Parameters:

  • className (String)

    The name of a class.

Returns:

  • (Class)

    The Class object for className. Returns nil if className is not one of the classes associated with the receiver or if there is an error loading the executable code containing the class implementation.

- (String) developmentLocalization

Returns the localization used to create the bundle. The returned localization corresponds to the value in the CFBundleDevelopmentRegion key of the bundle’s property list (Info.plist).

Returns:

  • (String)

    The localization used to create the bundle.

- (Array) executableArchitectures

Returns an array of numbers indicating the architecture types supported by the bundle’s executable. This method scans the bundle’s Mach-O executable and returns all of the architecture types it finds. Because they are taken directly from the executable, the returned values may not always correspond to one of the well-known CPU types defined in “Mach-O Architecture.”

Returns:

  • (Array)

    An array of NSNumber objects, each of which contains an integer value corresponding to a supported processor architecture. For a list of common architecture types, see the constants in “Mach-O Architecture.” If the bundle does not contain a Mach-O executable, this method returns nil.

- (String) executablePath

Returns the full pathname of the receiver's executable file.

Returns:

  • (String)

    The full pathname of the receiving bundle’s executable file.

- (NSURL) executableURL

Returns the file URL of the receiver's executable file.

Returns:

  • (NSURL)

    The file URL of the receiving bundle’s executable file.

- (Hash) infoDictionary

Returns a dictionary that contains information about the receiver. Common keys for accessing the values of the dictionary are CFBundleIdentifier, NSMainNibFile, and NSPrincipalClass.

Returns:

  • (Hash)

    A dictionary, constructed from the bundle's Info.plist file, that contains information about the receiver. If the bundle does not contain an Info.plist file, a valid dictionary is returned but this dictionary contains only private keys that are used internally by the NSBundle class. The NSBundle class may add extra keys to this dictionary for its own use.

- (Object) initWithPath(fullPath)

Returns an NSBundle object initialized to correspond to the specified directory. It’s not necessary to allocate and initialize an instance for the main bundle; use the mainBundle class method to get this instance. You can also use the bundleWithPath: class method to obtain a bundle identified by its directory path.

Parameters:

  • fullPath (String)

    The path to a directory. This must be a full pathname for a directory; if it contains any symbolic links, they must be resolvable.

Returns:

  • (Object)

    An NSBundle object initialized to correspond to fullPath. This method initializes and returns a new instance only if there is no existing bundle associated with fullPath, otherwise it deallocates self and returns the existing object. If fullPath doesn’t exist or the user doesn’t have access to it, returns nil.

- (Object) initWithURL(url)

Returns an NSBundle object initialized to correspond to the specified file URL. It’s not necessary to allocate and initialize an instance for the main bundle; use the mainBundle class method to get this instance. You can also use the bundleWithURL: class method to obtain a bundle identified by its file URL.

Parameters:

  • url (NSURL)

    The file URL to a directory. This must be a full URL for a directory; if it contains any symbolic links, they must be resolvable.

Returns:

  • (Object)

    An NSBundle object initialized to correspond to url. This method initializes and returns a new instance only if there is no existing bundle associated with url, otherwise it deallocates self and returns the existing object. If url doesn’t exist or the user doesn’t have access to it, returns nil.

- (Boolean) isLoaded

Obtains information about the load status of a bundle.

Returns:

  • (Boolean)

    YES if the bundle’s code is currently loaded, otherwise NO.

- (Boolean) load

Dynamically loads the bundle’s executable code into a running program, if the code has not already been loaded. You can use this method to load the code associated with a dynamically loaded bundle, such as a plug-in or framework. Prior to OS X version 10.5, a bundle would attempt to load its code—if it had any—only once. Once loaded, you could not unload that code. In OS X version 10.5 and later, you can unload a bundle’s executable code using the unload method. You don’t need to load a bundle’s executable code to search the bundle’s resources.

Returns:

  • (Boolean)

    YES if the method successfully loads the bundle’s code or if the code has already been loaded, otherwise NO.

- (Boolean) loadAndReturnError(error)

Loads the bundle’s executable code and returns any errors. If this method returns NO and you pass a value for the error parameter, a suitable error object is returned in that parameter. Potential errors returned are in the Cocoa error domain and include the types that follow. For a full list of error types, see FoundationErrors.h. NSFileNoSuchFileError - returned if the bundle’s executable file was not located.NSExecutableNotLoadableError - returned if the bundle’s executable file exists but could not be loaded. This error is returned if the executable is not recognized as a loadable executable. It can also be returned if the executable is a PEF/CFM executable but the current process does not support that type of executable. NSExecutableArchitectureMismatchError - returned if the bundle executable does not include code that matches the processor architecture of the current processor. NSExecutableRuntimeMismatchError - returned if the bundle’s required Objective-C runtime information is not compatible with the runtime of the current process.NSExecutableLoadError - returned if the bundle’s executable failed to load for some detectable reason prior to linking. This error might occur if the bundle depends on a framework or library that is missing or if the required framework or library is not compatible with the current architecture or runtime version.NSExecutableLinkError - returned if the executable failed to load due to link errors but is otherwise alright.The error object may contain additional debugging information in its description that you can use to identify the cause of the error. (This debugging information should not be displayed to the user.) You can obtain the debugging information by invoking the error object’s description method in your code or by using the print-object command on the error object in gdb.

Parameters:

  • error (Pointer)

    On input, a pointer to an error object variable. On output, this variable may contain an error object indicating why the bundle’s executable could not be loaded. If no error occurred, this parameter is left unmodified. You may specify nil for this parameter if you are not interested in the error information.

Returns:

  • (Boolean)

    YES if the bundle’s executable code was loaded successfully or was already loaded; otherwise, NO if the code could not be loaded.

- (Array) localizations

Returns a list of all the localizations contained within the receiver’s bundle.

Returns:

  • (Array)

    An array, containing NSString objects, that specifies all the localizations contained within the receiver’s bundle.

- (Hash) localizedInfoDictionary

Returns a dictionary with the keys from the bundle’s localized property list. This method uses the preferred localization for the current user when determining which resources to return. If the preferred localization is not available, this method chooses the most appropriate localization found in the bundle.

Returns:

  • (Hash)

    A dictionary with the keys from the bundle’s localized property list (InfoPlist.strings).

- (String) localizedStringForKey(key, value:value, table:tableName)

Returns a localized version of the string designated by the specified key and residing in the specified table. For more details about string localization and the specification of a .strings file, see ““String Resources”.”Using the user default NSShowNonLocalizedStrings, you can alter the behavior of localizedStringForKey:value:table: to log a message when the method can’t find a localized string. If you set this default to YES (in the global domain or in the application’s domain), then when the method can’t find a localized string in the table, it logs a message to the console and capitalizes key before returning it.The following example cycles through a static array of keys when a button is clicked, gets the value for each key from a strings table named Buttons.strings, and sets the button title with the returned value:

Parameters:

  • key (String)

    The key for a string in the table identified by tableName.

  • value (String)

    The value to return if key is nil or if a localized string for key can’t be found in the table.

  • tableName (String)

    The receiver’s string table to search. If tableName is nil or is an empty string, the method attempts to use the table in Localizable.strings.

Returns:

  • (String)

    A localized version of the string designated by key in table tableName. If value is nil or an empty string, and a localized string is not found in the table, returns key. If key and value are both nil, returns the empty string.

- (Object) objectForInfoDictionaryKey(key)

Returns the value associated with the specified key in the receiver's information property list. Use of this method is preferred over other access methods because it returns the localized value of a key when one is available.

Parameters:

  • key (String)

    A key in the receiver's property list.

Returns:

  • (Object)

    The value associated with key in the receiver's property list (Info.plist). The localized value of a key is returned when one is available.

- (String) pathForAuxiliaryExecutable(executableName)

Returns the full pathname of the executable with the specified name in the receiver’s bundle. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Parameters:

  • executableName (String)

    The name of an executable file.

Returns:

  • (String)

    The full pathname of the executable executableName in the receiver’s bundle.

- (String) pathForResource(name, ofType:extension)

Returns the full pathname for the resource identified by the specified name and file extension. The method first looks for a matching resource file in the non-localized resource directory of the specified bundle. (In OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations. For more details see Internationalization Programming Topics.The following code fragment gets the path to a plist within the bundle, and loads it into an NSDictionary.

Parameters:

  • name (String)

    The name of the resource file. If name is an empty string or nil, returns the first file encountered of the supplied type.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file is the first file encountered that exactly matches name.

Returns:

  • (String)

    The full pathname for the resource file or nil if the file could not be located.

- (String) pathForResource(name, ofType:extension, inDirectory:subpath)

Returns the full pathname for the resource identified by the specified name and file extension and located in the specified bundle subdirectory. If subpath is nil, this method searches the top-level nonlocalized resource directory and the top-level of any language-specific directories. (In OS X, the top-level nonlocalized resource directory is typically called Resources but in iOS, it is the main bundle directory.) For example, suppose you have a Mac app with a modern bundle and you specify @“Documentation” for the subpath parameter. This method would first look in the Contents/Resources/Documentation directory of the bundle, followed by the Documentation subdirectories of each language-specific .lproj directory. Whether this method recurses through subdirectories is dependent on the extension parameter. If nil or an empty string it will recurse, otherwise, it does not. (The search order for the language-specific directories corresponds to the user’s preferences.) For more details see Internationalization Programming Topics.

Parameters:

  • name (String)

    The name of the resource file.

  • extension (String)

    If extension is an empty string or nil, all the files in subpath and its subdirectories are returned. If an extension is provided the subdirectories are not searched.

  • subpath (String)

    The name of the bundle subdirectory. Can be nil.

Returns:

  • (String)

    An array of full pathnames for the subpath or nil if no files are located.

- (String) pathForResource(name, ofType:extension, inDirectory:subpath, forLocalization:localizationName)

Returns the full pathname for the resource identified by the specified name and file extension, located in the specified bundle subdirectory, and limited to global resources and those associated with the specified localization. This method is equivalent to pathForResource:ofType:inDirectory:, except that only nonlocalized resources and those in the language-specific .lproj directory specified by localizationName are searched.There should typically be little reason to use this method—see “Getting the Current Language and Locale”. See also preferredLocalizationsFromArray:forPreferences: for how to determine what localizations are available.

Parameters:

  • name (String)

    The name of the resource file.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file is the first file encountered that exactly matches name.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • localizationName (String)

    The name of the localization. This parameter should correspond to the name of one of the bundle’s language-specific resource directories without the .lproj extension.

Returns:

  • (String)

    The full pathname for the resource file or nil if the file could not be located.

- (Array) pathsForResourcesOfType(extension, inDirectory:subpath)

Returns an array containing the pathnames for all bundle resources having the specified filename extension and residing in the resource subdirectory. This method provides a means for dynamically discovering multiple bundle resources of the same type. If extension is an empty string or nil, all bundle resources in the specified resource directory are returned. The argument subpath specifies the name of a specific subdirectory to search within the current bundle’s resource directory hierarchy. If subpath is nil, this method searches the top-level nonlocalized resource directory and the top-level of any language-specific directories. (In OS X, the top-level nonlocalized resource directory is typically called Resources but in iOS, it is the main bundle directory.) For example, suppose you have a Mac app with a modern bundle and you specify @“Documentation” for the subpath parameter. This method would first look in the Contents/Resources/Documentation directory of the bundle, followed by the Documentation subdirectories of each language-specific .lproj directory. (The search order for the language-specific directories corresponds to the user’s preferences.) This method does not recurse through any other subdirectories at any of these locations. For more details see Internationalization Programming Topics.

Parameters:

  • extension (String)

    The file extension. If extension is an empty string or nil, the extension is assumed not to exist, all the files in subpath are returned.

  • subpath (String)

    The name of the bundle subdirectory to search.

Returns:

  • (Array)

    An array containing the full pathnames for all bundle resources matching the specified criteria. This method returns an empty array if no matching resource files are found.

- (Array) pathsForResourcesOfType(extension, inDirectory:subpath, forLocalization:localizationName)

Returns an array containing the file for all bundle resources having the specified filename extension, residing in the specified resource subdirectory, and limited to global resources and those associated with the specified localization. This method is equivalent to pathsForResourcesOfType:inDirectory:, except that only nonlocalized resources and those in the language-specific .lproj directory specified by localizationName are searched.

Parameters:

  • extension (String)

    The file extension of the files to retrieve.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • localizationName (String)

    The name of the localization. This parameter should correspond to the name of one of the bundle's language-specific resource directories without the .lproj extension.

Returns:

  • (Array)

    An array containing the full pathnames for all bundle resources matching the specified criteria. This method returns an empty array if no matching resource files are found.

- (Array) preferredLocalizations

Returns an array of strings indicating the actual localizations contained in the receiver’s bundle.

Returns:

  • (Array)

    An array of NSString objects, each of which identifies the a localization in the receiver’s bundle. The languages are in the preferred order.

- (Boolean) preflightAndReturnError(error)

Returns a Boolean value indicating whether the bundle’s executable code could be loaded successfully. This method does not actually load the bundle’s executable code. Instead, it performs several checks to see if the code could be loaded and with one exception returns the same errors that would occur during an actual load operation. The one exception is the NSExecutableLinkError error, which requires the actual loading of the code to verify link errors. For a list of possible load errors, see the discussion for the loadAndReturnError: method.

Parameters:

  • error (Pointer)

    On input, a pointer to an error object variable. On output, this variable may contain an error object indicating why the bundle’s executable could not be loaded. If no error would occur, this parameter is left unmodified. You may specify nil for this parameter if you are not interested in the error information.

Returns:

  • (Boolean)

    YES if the bundle’s executable code could be loaded successfully or is already loaded; otherwise, NO if the code could not be loaded.

- (Class) principalClass

Returns the receiver’s principal class. The principal class typically controls all the other classes in the bundle; it should mediate between those classes and classes external to the bundle. Classes (and categories) are loaded from just one file within the bundle directory. NSBundle obtains the name of the code file to load from the dictionary returned from infoDictionary, using “NSExecutable” as the key. The bundle determines its principal class in one of two ways:It first looks in its own information dictionary, which extracts the information encoded in the bundle’s property list (Info.plist). NSBundle obtains the principal class from the dictionary using the key NSPrincipalClass. For non-loadable bundles (applications and frameworks), if the principal class is not specified in the property list, the method returns nil. If the principal class is not specified in the information dictionary, NSBundle identifies the first class loaded as the principal class. When several classes are linked into a dynamically loadable file, the default principal class is the first one listed on the ld command line. In the following example, Reporter would be the principal class:The order of classes in Xcode’s project browser is the order in which they will be linked. To designate the principal class, control-drag the file containing its implementation to the top of the list.As a side effect of code loading, the receiver posts NSBundleDidLoadNotification after all classes and categories have been loaded; see “Notifications” for details. The following method obtains a bundle by specifying its path (bundleWithPath:), then loads the bundle with principalClass and uses the returned class object to allocate and initialize an instance of that class:

Returns:

  • (Class)

    The receiver’s principal class—after ensuring that the code containing the definition of that class is dynamically loaded. If the receiver encounters errors in loading or if it can’t find the executable code file in the bundle directory, returns nil.

- (String) privateFrameworksPath

Returns the full pathname of the receiver's subdirectory containing private frameworks. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (String)

    The full pathname of the receiver's subdirectory containing private frameworks.

- (NSURL) privateFrameworksURL

Returns the file URL of the receiver's subdirectory containing private frameworks. This method returns the appropriate path for modern application and framework bundles. This method may not return a URL for non-standard bundle formats or for some older bundle formats.

Returns:

  • (NSURL)

    The file URL of the receiver's subdirectory containing private frameworks.

- (String) resourcePath

Returns the full pathname of the receiving bundle’s subdirectory containing resources.

Returns:

  • (String)

    The full pathname of the receiving bundle’s subdirectory containing resources.

- (NSURL) resourceURL

Returns the file URL of the receiver's subdirectory containing resource files. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (NSURL)

    The file URL of the receiver's subdirectory containing resource files.

- (String) sharedFrameworksPath

Returns the full pathname of the receiver's subdirectory containing shared frameworks. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (String)

    The full pathname of the receiver's subdirectory containing shared frameworks.

- (NSURL) sharedFrameworksURL

Returns the file URL of the receiver's subdirectory containing shared frameworks. This method returns the appropriate path for modern application and framework bundles. This method may not return a URL for non-standard bundle formats or for some older bundle formats.

Returns:

  • (NSURL)

    The file URL of the receiver's subdirectory containing shared frameworks.

- (String) sharedSupportPath

Returns the full pathname of the receiver's subdirectory containing shared support files. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (String)

    The full pathname of the receiver's subdirectory containing shared support files.

- (NSURL) sharedSupportURL

Returns the file URL of the receiver's subdirectory containing shared support files. This method returns the appropriate path for modern application and framework bundles. This method may not return a path for non-standard bundle formats or for some older bundle formats.

Returns:

  • (NSURL)

    The file URL of the receiver's subdirectory containing shared support files.

- (Boolean) unload

Unloads the code associated with the receiver. This method attempts to unload a bundle’s executable code using the underlying dynamic loader (typically dyld). You may use this method to unload plug-in and framework bundles when you no longer need the code they contain. You should use this method to unload bundles that were loaded using the methods of the NSBundle class only. Do not use this method to unload bundles that were originally loaded using the bundle-manipulation functions in Core Foundation.It is the responsibility of the caller to ensure that no in-memory objects or data structures refer to the code being unloaded. For example, if you have an object whose class is defined in a bundle, you must release that object prior to unloading the bundle. Similarly, your code should not attempt to access any symbols defined in an unloaded bundle.

Returns:

  • (Boolean)

    YES if the bundle was successfully unloaded or was not already loaded; otherwise, NO if the bundle could not be unloaded.

- (NSURL) URLForAuxiliaryExecutable(executableName)

Returns the file URL of the executable with the specified name in the receiver’s bundle. This method returns the appropriate path for modern application and framework bundles. This method may not return a URL for non-standard bundle formats or for some older bundle formats.

Parameters:

  • executableName (String)

    The name of an executable file.

Returns:

  • (NSURL)

    The file URL of the executable executableName in the receiver’s bundle.

- (NSURL) URLForResource(name, withExtension:extension)

Returns the file URL for the resource identified by the specified name and file extension. If extension is an empty string or nil, the returned pathname is the first one encountered where the file name exactly matches name. The method first looks for a matching resource file in the nonlocalized resource directory of the specified bundle. (In OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations. For more details see Internationalization Programming Topics.

Parameters:

  • name (String)

    The name of the resource file.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file URL is the first file encountered that exactly matches name.

Returns:

  • (NSURL)

    The file URL for the resource file or nil if the file could not be located.

- (NSURL) URLForResource(name, withExtension:extension, subdirectory:subpath)

Returns the file URL for the resource file identified by the specified name and extension and residing in a given bundle directory. The method first looks for a matching resource file in the non-localized resource directory of the specified bundle. (In OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations. For more details see Internationalization Programming Topics.

Parameters:

  • name (String)

    The name of a resource file contained in the directory specified by bundleURL.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file URL is the first file encountered that exactly matches name.

  • subpath (String)

    The path of a top-level bundle directory. This must be a valid path. For example, to specify the bundle directory for a Mac app, you might specify the path /Applications/MyApp.app.

Returns:

  • (NSURL)

    The file URL for the resource file or nil if the file could not be located. This method also returns nil if the bundle specified by the bundlePath parameter does not exist or is not a readable directory.

- (NSURL) URLForResource(name, withExtension:extension, subdirectory:subpath, localization:localizationName)

Returns the file URL for the resource identified by the specified name and file extension, located in the specified bundle subdirectory, and limited to global resources and those associated with the specified localization. This method is equivalent to URLsForResourcesWithExtension:subdirectory:, except that only nonlocalized resources and those in the language-specific .lproj directory specified by localizationName are searched.There should typically be little reason to use this method—see “Getting the Current Language and Locale”. See also preferredLocalizationsFromArray:forPreferences: for how to determine what localizations are available.

Parameters:

  • name (String)

    The name of the resource file.

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file URL is the first file encountered that exactly matches name.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • localizationName (String)

    The name of the localization. This parameter should correspond to the name of one of the bundle’s language-specific resource directories without the .lproj extension.

Returns:

  • (NSURL)

    The file URL for the resource file or nil if the file could not be located.

- (Array) URLsForResourcesWithExtension(extension, subdirectory:subpath)

Returns the file URL for the resource identified by the specified name and file extension and located in the specified bundle subdirectory. If subpath is nil, this method searches the top-level non-localized resource directory and the top-level of any language-specific directories. (In OS X, the top-level non-localized resource directory is typically called Resources but in iOS, it is the main bundle directory.) For example, suppose you have a Mac app with a modern bundle and you specify @“Documentation” for the subpath parameter. This method would first look in the Contents/Resources/Documentation directory of the bundle, followed by the Documentation subdirectories of each language-specific .lproj directory. (The search order for the language-specific directories corresponds to the user’s preferences.) This method does not recurse through any other subdirectories at any of these locations. For more details see Internationalization Programming Topics.

Parameters:

  • extension (String)

    If extension is an empty string or nil, the extension is assumed not to exist and the file URL is the first file encountered that exactly matches name.

  • subpath (String)

    The name of the bundle subdirectory.

Returns:

  • (Array)

    The file URL for the resource file or nil if the file could not be located.

- (Array) URLsForResourcesWithExtension(extensions, subdirectory:subpath, localization:localizationName)

Returns an array containing the file URLs for all bundle resources having the specified filename extension, residing in the specified resource subdirectory, and limited to global resources and those associated with the specified localization. This method is equivalent to URLsForResourcesWithExtension:subdirectory:, except that only nonlocalized resources and those in the language-specific .lproj directory specified by localizationName are searched.

Parameters:

  • ext (String)

    The file extension of the files to retrieve.

  • subpath (String)

    The name of the bundle subdirectory to search.

  • localizationName (String)

    The name of the localization. This parameter should correspond to the name of one of the bundle's language-specific resource directories without the .lproj extension.

Returns:

  • (Array)

    An array containing the file URLs for all bundle resources matching the specified criteria. This method returns an empty array if no matching resource files are found.