如何在SKPSMTPMessage中发送变量字符串

时间:2011-12-11 10:37:26

标签: iphone ios xcode string variables

我需要发送一个变量字符串作为消息。我正在使用SKTPSMTPMesaage将食品订单从我的应用程序发送到面包店。救命?这是我的代码:

NSDictionary *plainPart = [NSDictionary dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,

                            @"string goes here",kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];    

1 个答案:

答案 0 :(得分:1)

NSDictionary *plainPart = 
      [NSDictionary dictionaryWithObjectsAndKeys:
@"text/plain",
kSKPSMTPPartContentTypeKey, 
[NSString stringWithFormat:@"string goes here%@",yourVaraibleName],   
kSKPSMTPPartMessageKey,@"8bit",
kSKPSMTPPartContentTransferEncodingKey,nil]; 

注意stringWithFormat调用。您可以通过删除文本'string goes here'(忽略引号)来完全替换您的变量字符串。