我需要发送一个变量字符串作为消息。我正在使用SKTPSMTPMesaage将食品订单从我的应用程序发送到面包店。救命?这是我的代码:
NSDictionary *plainPart = [NSDictionary dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,
@"string goes here",kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];
答案 0 :(得分:1)
NSDictionary *plainPart =
[NSDictionary dictionaryWithObjectsAndKeys:
@"text/plain",
kSKPSMTPPartContentTypeKey,
[NSString stringWithFormat:@"string goes here%@",yourVaraibleName],
kSKPSMTPPartMessageKey,@"8bit",
kSKPSMTPPartContentTransferEncodingKey,nil];
注意stringWithFormat调用。您可以通过删除文本'string goes here'(忽略引号)来完全替换您的变量字符串。