我在输出窗口中收到以下错误消息:
远程撰写控制器超时(NO)!
我已经读过IOS6中的SMS视图在自己的线程中运行,这可能解释了这个问题。
是否有关于他的问题的可用信息?
答案 0 :(得分:2)
我遇到了同样的问题(远程编写控制器超时(NO)!)。但是当我向消息编写器提供1.0延迟时,它显示了消息编写器。希望有人会觉得这很有用&节省宝贵的时间。
[self performSelector:@selector(showLaterThisSMS:)
withObject:messageComposeViewController
afterDelay:1.0f];
-(void)showLaterThisSMS:(MFMessageComposeViewController*)messageComposeViewController{
[self presentViewController:messageComposeViewController
animated:YES
completion:nil];
}
答案 1 :(得分:1)
帮助另一个与UIActivityViewController reports "Remote compose controller timed out"相关的用户,我们得出的结论是问题是一个特定的设备,当他重新启动设备时,问题就消失了。