NSBundle's allFrameworks
NSBundle's allFrameworks
- Subject: NSBundle's allFrameworks
- From: Georg Tuparev <email@hidden>
- Date: Sat, 15 Jan 2005 23:21:07 +0100
Quote form the docs:
"+ (NSArray *)allFrameworks
Returns an array of all of the application’s bundles that represent
frameworks. This array includes frameworks that are linked into an
application when the application is built and bundles for frameworks
that have been dynamically created. Only frameworks with one or more
Objective-C classes in them are included."
This code here:
NSEnumerator *en = [[NSBundle allFrameworks] objectEnumerator];
NSBundle *bd = nil;
while (bd = [en nextObject])
NSLog(@"---> %@",[bd bundlePath]);
includes:
---> /usr/lib
...
Is this something expected, or is it time for a (new) Radar entry?
cheers
Georg Tuparev
Tuparev Technologies
Klipper 13
1186 VR Amstelveen
The Netherlands
Mobile: +31-6-55798196
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden