mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
* Source/NSBundle.m ([NSBundle -bundleIdentifier]): New.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16283 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
15d28d8074
commit
c832eea8d3
3 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-03-27 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSBundle.m ([NSBundle -bundleIdentifier]): New.
|
||||||
|
|
||||||
2003-03-27 Stephane Corthesy <stephane@sente.ch>
|
2003-03-27 Stephane Corthesy <stephane@sente.ch>
|
||||||
|
|
||||||
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
|
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
|
||||||
|
|
|
@ -230,6 +230,10 @@ GS_EXPORT NSString* NSLoadedClasses;
|
||||||
/** Returns the absolute path to the resources directory of the bundle. */
|
/** Returns the absolute path to the resources directory of the bundle. */
|
||||||
- (NSString*) resourcePath;
|
- (NSString*) resourcePath;
|
||||||
|
|
||||||
|
/** Returns the bundle identifier, as defined by the CFBundleIdentifier
|
||||||
|
key in the infoDictionary */
|
||||||
|
- (NSString *)bundleIdentifier;
|
||||||
|
|
||||||
/** Returns the bundle version. */
|
/** Returns the bundle version. */
|
||||||
- (unsigned) bundleVersion;
|
- (unsigned) bundleVersion;
|
||||||
|
|
||||||
|
|
|
@ -1595,6 +1595,11 @@ _bundle_load_callback(Class theClass, struct objc_category *theCategory)
|
||||||
return _infoDict;
|
return _infoDict;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (NSString *)bundleIdentifier
|
||||||
|
{
|
||||||
|
return [[self infoDictionary] objectForKey:@"CFBundleIdentifier"];
|
||||||
|
}
|
||||||
|
|
||||||
- (unsigned)bundleVersion
|
- (unsigned)bundleVersion
|
||||||
{
|
{
|
||||||
return _version;
|
return _version;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue