views:

38

answers:

1

If I have an NSMutableString containing a random string, then how do I remove all characters from it so that it becomes an empty string?

+4  A: 
[myMutableString setString:@""];

Obligatory documentation link.

Robot K