- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在更新我的一个旧应用程序时遇到问题,这只是因为我更新到 Xcode 4.5 并尝试在 iOS6 上出现以下错误;
*** Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency', reason: 'A view can only be associated with at most one view controller at a time! View <MainView: 0x1e818620; frame = (0 0; 320 476); autoresize = RM+BM; layer = <CALayer: 0x1e818750>> is associated with <MainViewController: 0x1e811850>. Clear this association before associating this view with <UIViewController: 0x21149860>.'
* 首先抛出调用栈:(0x377d82a3 0x35ae897f 0x377d81c5 0x38b0dd7b 0x38b0dc6b 0x1dc25 0x38b940ad 0x38b9405f 0x38b9403d 0x38b938f3 0x38b93de9 0x38abc5f9 0x38aa9809 0x38aa9123 0x37c5c5a3 0x37c5c1d3 0x377ad173 0x377ad117 0x377abf99 0x3771eebd 0x3771ed49 0x37c5b2eb 0x38afd301 0x1bf03 0x1bea8)libc++abi.dylib:终止调用抛出异常[切换到进程9219线程0x2403]
我认为是这里导致了问题;
mailComposer = [[UIViewController alloc] init];
[mailComposer setView:self];
[mailComposer setModalTransitionStyle: UIModalTransitionStyleCoverVertical];
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; picker.mailComposeDelegate = self;
当我点击应该将我带到 MFMail 编辑器的按钮时,应用程序就会崩溃。
有什么想法吗?
提前致谢
编辑 - 如果我删除前 3 行应用程序不会崩溃,但是不会加载邮件 View ...这是完整的代码;
// The actual mail window call
mailComposer = [[UIViewController alloc] init];
[mailComposer setView:self];
[mailComposer setModalTransitionStyle: UIModalTransitionStyleCoverVertical];
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; picker.mailComposeDelegate = self;
[picker setSubject:@"Hello How are you"];
// Fill out the email body text
NSString *pageLink = @"http://www.apple.com";
NSString *iTunesLink = @"http://itunes.apple.com/gb/artist/randomer";
NSString *content = @"blah blah";
NSString *emailFileName = [NSString stringWithFormat:@"email_.html"];
NSString *emailFilePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent: emailFileName];
NSString *body = [NSString stringWithContentsOfFile:emailFilePath encoding:NSUTF8StringEncoding error:nil];
body = [body stringByReplacingOccurrencesOfString:@"//TEXT_PLACEHOLDER//" withString:@"replace here"];
body = [body stringByReplacingOccurrencesOfString:@"//FRIENDNAME_PLACEHOLDER//" withString:pageLink];
body = [body stringByReplacingOccurrencesOfString:@"//ITUNES_PLACEHOLDER//" withString: iTunesLink];
body = [body stringByReplacingOccurrencesOfString:@"//PASSKEY_PLACEHOLDER//" withString: yourPassword];
body = [body stringByReplacingOccurrencesOfString:@"//PHONETIC_PLACEHOLDER//" withString: yourPhoneticPassword];
[picker setMessageBody:body isHTML:YES];
picker.navigationBar.barStyle = UIBarStyleBlack;
[mailComposer presentModalViewController:picker animated:YES];
[picker release];
//HANDLE THE MAIL EVENTS
////////////////////////
(void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)错误{ //通知用户与接口(interface)相关的错误切换(结果){ 案例 MFMailComposeResultCancelled: 休息; 案例 MFMailComposeResultSaved: 休息; 案例 MFMailComposeResultSent: 休息; 案例 MFMailComposeResultFailed: 休息;
default:
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Email" message:@"Sending Failed - Unknown Error :-("
delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
}
break;
}[mailComposer dismissModalViewControllerAnimated:YES]; //[mailComposer.view.superview removeFromSuperview];
最佳答案
让邮件撰写 View Controller 显示的主要事情是使用当前事件的 UIViewController 显示它。你没有分享足够的代码让我清楚这一点,但如果 self
在那个上下文中是一个 UIViewController,你需要做:
[self presentViewController:picker animated: YES completion:nil];
如果 self
不是 UIViewController,请将上面代码中的 self
替换为引用当前 UIViewController 的变量。
关于ios - UIViewControllerHierarchyInconsistency - 一个 View 一次最多只能有一个 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12575176/
分配时遇到 UIViewControllerHierarchyInconsistency 异常, txtFieldDelegate.view = self.view; txtFirstName.de
我知道这个问题以前发布过,但我找到的答案与这种情况不符 运行2年前在Xcode 4.5.1中编写的应用程序后出现异常。 这是: exception 'UIViewControllerHierarchy
我在选择器上方创建了一个带有两个按钮的工具栏,并在 ios7 上工作,当我在 ios8 中运行时崩溃: Terminating app two to uncaught exception 'UIVie
我在 XCode 4.1 上为 iOs 4.3 开发我的应用程序,但昨天我用 iOs 5.0 SDK 将它更新到 XCode 4.2。 当我在 iphone 4.3 模拟器中运行我的应用程序时,它运行
尝试使用以下代码呈现模态视图 Controller MapViewController *mapView = [[MapViewController alloc] initWithNibName:@"
我已经使用 MonoTouch 2.8 和其他相关更新升级到 iOS 5。我有一个 UIViewController,其中有一个 UITabBarController,其中为 View 配置了两个不同
iOS7、Xcode 和 5 一切都很好 - 升级到 Xcode 6 和 iOS8 后,应用程序突然崩溃,而它一直工作正常。 崩溃时显示的错误是: Terminating app due to unc
我在 UINavigationController 中使用 ABPersonViewController 来显示和编辑联系信息。到目前为止,这一直使用最新的 xcode 版本(当前为 4.5.2)和
我有一个使用 CollapsableTableView 的 iPhone 应用程序。升级到 iOS 6 后,应用程序崩溃并出现以下错误。 "A view can only be associated
我有这样的 View Controller 结构:UINavigationController(root view controller)->UIViewController .在我的 UIViewC
当我尝试显示 UIAlertController在我的应用程序中,应用程序终止并出现异常 UIViewControllerHierarchyInconsistency . View Controlle
我正在开发一个 iPad 应用程序,它有一个 View Controller (称为 ContentViewController),其中有 3 个不同的 View 。 slider View - 从底
我的应用程序运行良好,直到我更新到 Xcode 4.5 并在 IOS 6 上运行它。现在它崩溃了,但有一个异常(exception)——UIViewControllerHierarchyInconsi
在我更新到 ios6 之前,我有一个完美的项目。 当我点击一个栏项目以显示带有 View 的弹出窗口时,应用程序崩溃了...... 这是我得到的错误 "reason: 'A view can
我在更新我的一个旧应用程序时遇到问题,这只是因为我更新到 Xcode 4.5 并尝试在 iOS6 上出现以下错误; *** Terminating app due to uncaught except
我在 iPad 5.0 上遇到奇怪的崩溃问题。此崩溃仅发生在 iOS 5.0 和带有模态 ViewController 的 iPad 上,并且 ViewControler 样式设置为全屏以外的任何内容
我有一个在 iOS 7 和 Xcode 5 中运行良好的应用程序。当我将它更新到 iOS 8 和 Xcode 6 时,当应用程序试图在点击文本字段时在 View 中向上滑动 UIDatePicker
我有一个带有几个按钮的操作表。此操作表在方向更改后重新定位。以下代码在方向更改期间使用: [self.onlineActionsheet dismissWithClickedButtonIndex:
我花了一天的时间试图找出与文本字段的 inputView 相关的我的应用程序崩溃。我试过制作一个测试项目来重现崩溃。这是我所拥有的: class ViewController: UIViewContr
我是一名优秀的程序员,十分优秀!