Text is stored in NSString (9.1).
Creation of strings is very easy:
Example:
They can be concatenated:
Example:
|
newStr := oldStr stringByAppendingString: ' yes yes yes' . newStr := oldStr , ' and even more.' . " short form of string concatenation "
|