本文介绍了打开SMS视图时,远程视图控制器在iPhone4上的IOS6中崩溃的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在输出窗口中收到以下错误消息:

I get the following error message in the output window:

远程撰写控制器超时(NO)!

我已经读过IOS6中的SMS视图在自己的线程中运行,这可能解释了这个问题。

I have read that the SMS view in IOS6 runs in its own thread which might explain the problem.

有没有可用的信息关于他的问题?

Is there any available information about his issue?

推荐答案

我遇到了同样的问题(远程撰写控制器超时(NO)!)。但是当我向消息编写器提供1.0延迟时,它显示了消息编写器。希望有人会发现这有用&节省宝贵的时间。

I faced this same issue (Remote compose controller timed out (NO)!). But when i presented the message composer with 1.0 delay, it showed the message composer. Hope somebody will find this as useful & save their valuable time.

[self performSelector:@selector(showLaterThisSMS:) 
           withObject:messageComposeViewController
           afterDelay:1.0f];


-(void)showLaterThisSMS:(MFMessageComposeViewController*)messageComposeViewController{

    [self presentViewController:messageComposeViewController
                       animated:YES
                     completion:nil];

}

这篇关于打开SMS视图时,远程视图控制器在iPhone4上的IOS6中崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 21:28