나는 앱을 만들고 있었는데 누군가가 내 앱에서 이메일을 통해 공유하고 싶을 때 문자열로 stringValue
을 변수로 표시하고 싶었습니다.MailComposeViewController에 문자열 인쇄하기
- (IBAction)openMail:(id)sender {
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
mailer.mailComposeDelegate = self;
[mailer setSubject:@"My App"];
NSArray *toRecipients = [NSArray arrayWithObjects:@"[email protected]", nil];
[mailer setToRecipients:toRecipients];
NSString *emailBody = [@"Rating is: %@", [self.app.rating stringValue];
[mailer setMessageBody:emailBody isHTML:NO];
[self presentModalViewController:mailer animated:YES];
}
가 어떻게 표시 할 [self.app.rating stringValue];
할 수있다 "평가는 다음과 같습니다 some_number"당신 OpenMail 등은? 아마도 %@
부분을 잘못 쓰고 있습니까? 어떤 도움을 주시면 감사하겠습니다. 미리 감사드립니다!