我想创建一个包含字符串文本的消息,同时也引用标签的文本。
我有这个,但我不确定如何把它绑在一起。
NSString *message = @"Lets meet here:"; _addressLabel.text;
答案 0 :(得分:1)
您可以使用stringWithFormat:
NSString *message = [NSString stringWithFormat:@"Lets meet here: %@", _addressLabel.text];
%@
告诉方法在哪里替换参数 - 你甚至可以有多个:
NSString *foo = @"foo";
NSString *bar = @"bar";
NSString *message = [NSString stringWithFormat:@"%@ : %@", foo, bar];
将message
设为foo : bar
。