On 2012-07-10, at 9:44 PM, Jens Alfke <[email protected]> wrote:
> > On Jul 10, 2012, at 9:03 PM, Erik Stainsby <[email protected]> > wrote: > >> 2012-07-10 20:42:39.792 Trixie[41453:303] -[RSReactionRule loadFromPlugin:]: >> unrecognized selector sent to instance 0x1018961b0 > > What does the implementation of the -loadFromPlugin: method in that class (or > a superclass it inherits it from) look like? Not the body, just the outside > part. > > —Jens #import "RSTrixiePlugin.h" @class RSReactionRule; @interface RSReactionPlugin : RSTrixiePlugin // various properties - (void) loadFromRule: (RSReactionRule*) rule; @end #import "RSReactionPlugin.h" #import "RSReactionRule.h" @implementation RSReactionPlugin - (void) loadFromRule: (RSReactionRule*) rule { // setting various properties of the plugin } @end _______________________________________________ Cocoa-dev mailing list ([email protected]) 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: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
