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?
|
I want to know the difference between I need to clean string value in So
or
Which one is better to clean and why? |
||||
|
|
UPDATE In the case of a mutable string, you have to alloc/init it first like this:
Maybe you have done that, but then you have to reset the string like this:
So instead of writing If you assign
This cannot happen since the string is
This can happen, 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 Obviously, assigning to |
|||||||||||
|
|
None of them use
to reset your string. Your object remains the same. You invoke a method that clear its content. |
|||
|
|