-2

次のコードを使用してアプリ内 SMS を送信しています。

NSString *message = @"this ia the message";
MFMessageComposeViewController *TextSheet = ([MFMessageComposeViewController alloc]);
TextSheet.messageComposeDelegate = self;
[TextSheet setBody:message];
TextSheet.recipients = [NSArray arrayWithObjects:@"0549999999", @"0548888888", nil];
[self presentViewController:TextSheet animated:YES completion:Nil];

IOS 7 を搭載した実際のデバイス iPhone 5C で試してみると、黒い画面しか表示されません。私は何を間違っていますか?

4

1 に答える 1