• 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
Re: Is this an incorrect use of categories ?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is this an incorrect use of categories ?


  • Subject: Re: Is this an incorrect use of categories ?
  • From: Erik Stainsby <email@hidden>
  • Date: Fri, 06 Jul 2012 17:39:43 -0700


On 2012-07-06, at 5:13 PM, Alex Zavatone <email@hidden> wrote:

> OK.  I'm not sure what I ran into is related, but maybe it is.
>
> If you can isolate the line of code before the crash, can you check and NSLog the string value of the selector being sent and see if it matches the selectors on the object?
>
> GL.

The selector name is reported in the error message, and the method is declared as a @property/@synthesize so I have no reason to doubt that they match up.

I have in troubleshooting this hand coded the setter/getter and removed the property decl. With nil difference in the result. Still not recognized.   Which is why I started to think about scope issues.


>
> On Jul 6, 2012, at 7:48 PM, Erik Stainsby wrote:
>
>>
>>
>> On 2012-07-06, at 12:46 PM, Greg Parker <email@hidden> wrote:
>>
>>> On Jul 5, 2012, at 7:50 PM, Erik Stainsby <email@hidden> wrote:
>>>> My project employs a framework which loads several plugins. When the user interacts with these plugins s/he generates an intermediate abstraction of the plugin contents which I refer to as a rule. The rule abstraction exists to facilitate round-tripping back to the plugin of origin or onward to the rendered product.
>>>>
>>>> I am currently stuck in the stage of migrating the data from the plugin to a newly created rule instance.  I hit on the notion of using categories to shuffle the values from the plugin instance to the rule instance and vice versa. Two small dedicated categories for each plugin family (I have three families at the moment). Seems a manageable scheme.  However, I am getting an   "unrecognized selector sent to instance 0xyaddayadda" when I try to run this. I know the selector does exist, so I must have a scoping issue (?)
>>>
>>> What exactly is the unrecognized selector message you get?
>>>
>>
>>
>> 2012-07-04 20:43:50.180 Trixie[422:303] -[RSLocatorView requestPopover:]- [0098]
>> 2012-07-04 20:44:02.980 Trixie[422:303] -[RSReactionRule(RSReactionRuleFromPlugin) loadFromPlugin:]- [0015] plugin.action: addClass
>> 2012-07-04 20:44:02.981 Trixie[422:303] -[RSReactionRule setAction:]: unrecognized selector sent to instance 0x101833fe0
>> 2012-07-04 20:44:02.981 Trixie[422:303] -[RSReactionRule setAction:]: unrecognized selector sent to instance 0x101833fe0
>> 2012-07-04 20:44:02.983 Trixie[422:303] (
>> 	0   CoreFoundation                      0x00007fff90996716 __exceptionPreprocess + 198
>> 	1   libobjc.A.dylib                     0x00007fff8c97c470 objc_exception_throw + 43
>> 	2   CoreFoundation                      0x00007fff90a2cd5a -[NSObject(NSObject) doesNotRecognizeSelector:] + 186
>> 	3   CoreFoundation                      0x00007fff90984c3e ___forwarding___ + 414
>> 	4   CoreFoundation                      0x00007fff90984a28 _CF_forwarding_prep_0 + 232
>> 	5   Trixie                              0x000000010000cf81 -[RSReactionRule(RSReactionRuleFromPlugin) loadFromPlugin:] + 177
>> 	6   Trixie                              0x000000010000b6d9 -[RSRuleWindowController addRuleToStore:] + 249
>> 	7   AppKit                              0x00007fff91589599 -[NSApplication sendAction:to:from:] + 342
>> 	8   AppKit                              0x00007fff915893f7 -[NSControl sendAction:to:] + 85
>> 	9   AppKit                              0x00007fff9158932b -[NSCell _sendActionFrom:] + 138
>> 	10  AppKit                              0x00007fff91587813 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1855
>> 	11  AppKit                              0x00007fff91587061 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 504
>> 	12  AppKit                              0x00007fff915867dc -[NSControl mouseDown:] + 820
>> 	13  AppKit                              0x00007fff9157e13e -[NSWindow sendEvent:] + 6853
>> 	14  AppKit                              0x00007fff9157a274 -[NSApplication sendEvent:] + 5761
>> 	15  AppKit                              0x00007fff9148feaa -[NSApplication run] + 636
>> 	16  AppKit                              0x00007fff91434886 NSApplicationMain + 869
>> 	17  Trixie                              0x0000000100001b12 main + 34
>> 	18  libdyld.dylib                       0x00007fff8f9e27e1 start + 0
>> )
>>
>>
>>
>>> Are there any static libraries involved in your build process? Categories compiled into static libraries require special treatment.
>>> --
>>> Greg Parker     email@hidden     Runtime Wrangler
>>>
>>
>> I am only using the home-built loader framework as mentioned.  No other external-to-Cocoa libs.
>>
>> I opted to use categories in this case to avoid having to directly modify my framework. But if there is as Graham suggested a load order issue, I might be better off implementing the method natively in the framework. I pretty much have the code already in the categories. :D
>>
>> Erik
>>
>>
>>
>> _______________________________________________
>>
>> 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
>


_______________________________________________

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

References: 
 >Is this an incorrect use of categories ? (From: Erik Stainsby <email@hidden>)
 >Re: Is this an incorrect use of categories ? (From: Greg Parker <email@hidden>)
 >Re: Is this an incorrect use of categories ? (From: Erik Stainsby <email@hidden>)
 >Re: Is this an incorrect use of categories ? (From: Alex Zavatone <email@hidden>)

  • Prev by Date: Re: Custom NSViews
  • Next by Date: Re: rotating NSBezierPath objects
  • Previous by thread: Re: Is this an incorrect use of categories ?
  • Next by thread: Tab Bar Item naming convention?
  • Index(es):
    • Date
    • Thread