バックグラウンドで実行される別のクラスメソッド MFMessageCompose
から (topviewcontroller) にモデルをポップアップしたい。NSObject
MFMessageCompose
このコードを使用してモデルをポップアップします:
MFMessageComposeViewController * controller = [[MFMessageComposeViewController alloc] init];
if([MFMessageComposeViewController canSendText])
{
controller.body = @"Check out FundooSpace for mobile.Download it now from app.fundoospace.net/FundooSpace/d";
controller.recipients = (NSArray *)passa;
passa = nil;
AppDelegate * appDelegateObject1 = (AppDelegate *)[[UIApplication sharedApplication] delegate];
controller.messageComposeDelegate = self;
[appDelegateObject1.navigationCntr.topViewController presentModalViewController:controller animated:NO];
}
それは正常に動作します。しかし、送信またはキャンセルボタンをクリックすると、アプリがクラッシュしてエラーが発生します
wait_fences: failed to receive reply: 10004003
私に提案してください。