• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
sharing code between multiple bundle style (plugin) libraries
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

sharing code between multiple bundle style (plugin) libraries


  • Subject: sharing code between multiple bundle style (plugin) libraries
  • From: Jesse Grosjean <email@hidden>
  • Date: Fri, 28 Jan 2005 09:18:35 -0500

I'm trying to chain two plugins A and B, so that plugin B depends on and uses classes that are defined in plugin A. Is this possible and what is the best way to set this up in xCode?

For example say this class AService is defined in plugin A:

@interface AService : NSObject {
}
+ (void)doService;
@end

@implementation AService
+ (void)doService {
	NSBeep();
}
@end

How do I set things up so that I can write this code in plugin B:

[AService doService];

Basically I want to make a plugin A behave like a framework the plugin B links to, except I would still like the plugin A to be discoverable by my application at runtime time.

Thanks for any pointers.

Jesse

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Prev by Date: Lua syntax support?
  • Next by Date: Creating/updating files from Interface Builder
  • Previous by thread: Re: [xcode] Lua syntax support?
  • Next by thread: Creating/updating files from Interface Builder
  • Index(es):
    • Date
    • Thread