I want to compare the following simple assignments:
...
@property(nonatomic,retain) UITextField *textField;
...
self.textField.text = @"some string";
self.textField.text = [NSString stringWithString:@"some string"];
self.textField.text = [NSString stringWithFormat:@"some string"];
Where textField is an UITextField and the text property a NSString. Of course all of them work. I know the difference of the last two when using parameters. But lets say we are only interested in this usage.
QUESTIONS:
- For doing this kind of assignment, why shouldn't I always use the first one?
- Comparing the last two, is there any difference for the compile- and/or runtime of these two? And why should I use
stringWithString:at all if not?
textproperty of thetextFieldobject? – outis Nov 25 '11 at 23:37@property ...line. The property attributes, such as whethertextcopies or retains new values, have an affect. – outis Nov 25 '11 at 23:52