If I have a class:

@interface MyClass : NSObject
{
    NSNumber*    myNumber;
}
@property (nonatomic, retain) NSNumber* myNumber;


And in the class implementation I have:

-(void)doSomething
{
    // it could get this string from anywhere, not always a constant
    NSString* myString = @"myNumber";

     ???
}


Is there a way to access the myNumber property and send it a message knowing
only it's name (contained in myString)?

So rather than doing:

[myNumber release];

I could do something like:

[getProperty(myString) release];


Thanks,

Trygve



_______________________________________________

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]

Reply via email to