On Tue, Aug 5, 2008 at 2:19 PM, Elan Feingold <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I can load the principal class of a bundle with:
>
> NSBundle* bundleToLoad = [NSBundle bundleWithPath:@"..."];
> Class exampleClass = [bundleToLoad principalClass]);
>
> However, I have a situation where I have a bundle that has a class *without*
> a principal class, but it has a class that is a subclass of a specific other
> class. Is there any way to iterate through classes offered by a bundle and
> pick out the ones that derive from a specific superclass?

Start here:

http://www.cocoadev.com/index.pl?FindingAllSubclassesOfAClass

Using that code as a base, it's pretty easy to add an extra filter
that checks the bundle of each returned class and accepts only those
that are in the specified bundle.

Mike
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to