I don't know how to combine two NSString
s. I've a label, rohstoffe
and want to set its text with two strings, but the label only shows the last string.
Why?
Here is my code:
NSString *n = @"A";
NSString *m = @"B";
self.rohstoffe.text = (@"%d und %d", n, m);