私の新しい iOS プロジェクトでは、エンド ユーザーがMMS text and/or images
UIButton Action で (TextField から) できるようにしたいと考えています。この機能を持つ同様のアプリを見たことがあります (テキスト付きで、画像付きのものはまだ見たことがありません)。
Googleで検索しましたが、これを行う方法が見つかりませんでした。
私の新しい iOS プロジェクトでは、エンド ユーザーがMMS text and/or images
UIButton Action で (TextField から) できるようにしたいと考えています。この機能を持つ同様のアプリを見たことがあります (テキスト付きで、画像付きのものはまだ見たことがありません)。
Googleで検索しましたが、これを行う方法が見つかりませんでした。
これはうまくいきます
MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init];
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.persistent = YES;
pasteboard.image = [UIImage imageNamed:@"PDF_File.png"];
NSString *phoneToCall = @"sms:";
NSString *phoneToCallEncoded = [phoneToCall stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
NSURL *url = [[NSURL alloc] initWithString:phoneToCallEncoded];
[[UIApplication sharedApplication] openURL:url];
if([MFMessageComposeViewController canSendText]) {
NSMutableString *emailBody = [[NSMutableString alloc] initWithString:@"Your Email Body"];
picker.messageComposeDelegate = self;
picker.recipients = [NSArray arrayWithObject:@"123456789"];
[picker setBody:emailBody];// your recipient number or self for testing
picker.body = emailBody;
NSLog(@"Picker -- %@",picker.body);
[self presentModalViewController:picker animated:YES];
NSLog(@"SMS fired");
}