I have an ivar which is alloc-inited in the init of an object:

attString = [[NSMutableAttributedString alloc] init];

On a loop, I want to clear the contents of attString and re-use it. How do I do this?

Thanks!

link|improve this question

77% accept rate
feedback

2 Answers

up vote 3 down vote accepted
[[attString mutableString] setString:@""];
link|improve this answer
feedback
[attString release];
attString = [[NSMutableAttributedString alloc] init];

Kenny's method probably quicker.

link|improve this answer
Yeah I was trying to avoid release/re-alloc to avoid memory inefficiency :) – jowie Sep 23 '10 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.