Re: Sending a msg. to a class
Re: Sending a msg. to a class
- Subject: Re: Sending a msg. to a class
- From: "Shawn Erickson" <email@hidden>
- Date: Thu, 25 Oct 2007 12:48:09 -0700
On 10/25/07, z <email@hidden> wrote:
>
> I'll appreciate someone to help me understand the problem and suggest solution.
> I'm trying to send a msg. to Pawn1 thru Pawn16 classes, but it doesn't work from inside the loop.
> Thanks.
>
> - (IBAction)resetAll: (id)sender {
>
> // [toPawn1 showYourself]; //--- This works fine.
> // .......
> // [toPawn16 showYourself];
>
> / but the following generates a warning: 'NSMutableString' may not respond to '-showYourself'
As it should... unless you added showYourself to NSMutableString via a category.
> for (i = 1; i <= 16; ++i) {
> NSMutableString *str = [NSMutableString stringWithFormat: @"toPawn%i", i];
> [ [str className] showYourself];
> [str release];
> }
> }
Can you explain what you think above loop does? Better yet explain
what you are attempting to do in better detail... the above loop
likely isn't the way to do it (doesn't do what you think it does).
-Shawn
_______________________________________________
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