Is it possible to add on to the text of a label without changing existing text? I'm new to mac development in Xcode so any help is appreciated.
Asked
Active
Viewed 548 times
1 Answers
3
Yes and no. Basically, you replace the text with a new string that includes the old text
self.myLabel.text = [self.myLabel.text stringByAppendingString:@"more stuff"];

user3386109
- 34,287
- 7
- 49
- 68