为什么没有占位符不工作?

时间:2013-08-25 20:01:58

标签: ios cocoa-touch placeholder

testMsg.toEmail = @"%@@txt.att.net", phoneNumberEntry.text;

嗨所以我想让testMsg.toEmail成为(phoneNumberEntry文本)@txt.att.net。我尝试用占位符来做它,但它没有用。我该如何解决?

1 个答案:

答案 0 :(得分:2)

我认为马丁是对的,你可以使用这段代码 - :

testMsg.toEmail =  [NSString stringWithFormat:@"%@@txt.att.net",phoneNumberEntry.text];