So I had a class defined with a property - we'll call it propertyName for the sake of this example. I had the property setup with @synthesize in my implementation.
I have a method called objectToNSDictionary which basically dumps that property into a dictionary:
NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[self propertyName], @"propertyName", nil];
I return that dict to the caller I use a JSonWriter to convert it to a string and pass it off to some service...
Suffice it to say that the above works. However, my original implementation didn't use [self propertyName] but instead just used propertyName. When I did that, I always had an error saying unrecognized selector sent to instance when I tried to use the object in the caller.
What's the difference in syntax really saying and why does one work and not the other?
[self propertyName]in your code withpropertyName— and it's hard to tell you what's making the difference if we only have one of the code samples. – Chuck Aug 25 '11 at 17:27.h:NSString * propertyName;@property (retain,nonatomic) NSString * propertyName;in.m@syncthesize propertyName;– Seamus Aug 25 '11 at 17:28