Re: How to avoid warning?
Re: How to avoid warning?
- Subject: Re: How to avoid warning?
- From: Jean Suisse <email@hidden>
- Date: Tue, 22 Jan 2013 18:34:24 +0100
> myObj = [[myClass alloc] performSelector(@selector("initWithManager:") withObject:self];
>
> Would this work?
>
You could do :
id myObj =[myClass alloc];
myObj = [myObj performSelector(@selector("initWithManager:") withObject:myObj];
_______________________________________________
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