Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know the difference between nil and @"" in NSMutableString.

I need to clean string value in NSMutableString every second.

So

myMutableString = nil;

or

myMutableString = @"";

Which one is better to clean and why?

share|improve this question
This smells like homework sniff – MCKapur Jan 19 at 9:59

2 Answers

up vote 4 down vote accepted

UPDATE


In the case of a mutable string, you have to alloc/init it first like this:

NSMutableString *myMutableString = [[NSMutableString alloc] init];

Maybe you have done that, but then you have to reset the string like this:

[myMutableString setString: @""];

So instead of writing myMutableString = @"", use the code above.


If you assign myMutableString to nil it is not a valid pointer/object and cannot respond to messages or actions. If you actually set it to @"", it is a totally valid object which can respond to messages, methods and actions, it is just contains a string with a length of 0.

myMutableString = nil;

[myMutableString appendString: @"It now contains a valid string!"]; 

This cannot happen since the string is nil

myMutableString = @""; 

[myMutableString appendString: @"It now contains a valid string!"]; 

This can happen, myMutableString is a valid object and can respond to messages. And guess what, it now has a string!

So, a string object can still be initialized and have have an actual string value without any characters. Just like an array can be valid and have 0 objects inside it. Otherwise, how would you add to it!?

However, In an NSMutableString's scenario, you may have to actually alloc-init it.... somebody please clarify.

Obviously, assigning to @"" is better, it actually depends on your scenario though. I don't know why you would want to assign to nil, unless you are reassigning the variable to a new string object.

share|improve this answer
[@"" appendString: @"It now contains a valid string!"] will throw unrecognized selector exception – xlc Jan 19 at 10:10
thank bro. it will work well :) – i-Developer-i Jan 19 at 10:12
@xlc0212 What are you talking about!? Let me reword my question if that is what you think I meant. – MCKapur Jan 19 at 10:13
@Onigiri Thats fine.... – MCKapur Jan 19 at 10:13
@"" is NSString not NSMutableString. *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Attempt to mutate immutable object with appendString:' – xlc Jan 19 at 10:50
show 1 more comment

None of them

use

[myMutableString setString: @""];

to reset your string.

Your object remains the same. You invoke a method that clear its content.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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