How to reset a NSMutableString with a empty value?

Viewed 10781
NSMutableString *str = [[NSMutableString alloc] init];

Suppose str has right know a value "me".

And On click of a button I want that the value of str get reset. That is the string value become nil or empty.

now i am using this [myword stringWithString: @""]; but not working.

1 Answers
Related