Re: Instance not responding to selector
Re: Instance not responding to selector
- Subject: Re: Instance not responding to selector
- From: Erik Stainsby <email@hidden>
- Date: Tue, 10 Jul 2012 23:11:21 -0700
On 2012-07-10, at 9:44 PM, Jens Alfke <email@hidden> wrote:
>
> On Jul 10, 2012, at 9:03 PM, Erik Stainsby <email@hidden> 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@hidden)
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:
This email sent to email@hidden