Re: Returning exactly what has been promised
Re: Returning exactly what has been promised
- Subject: Re: Returning exactly what has been promised
- From: Graham Cox <email@hidden>
- Date: Wed, 23 Jul 2008 15:42:22 +1000
On 23 Jul 2008, at 3:38 pm, Damien Cooke wrote:
You could return like this
return [myWorkingMutableString copy];
This makes a immutable copy returning an NSString.
Yes, but it also is leaking the returned string, because you have
returned a retained object. You should autorelease the string after
copying it.
Graham
_______________________________________________
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