我正在使用以下代码发送应用内短信。
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 上试用它,它只显示黑屏。我究竟做错了什么?