-2

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.

0

1 Answer 1

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"]; 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.