xcode – iOS5 iPad UIPopoverController initWithContentViewController NSGenericException

xcode – iOS5 iPad UIPopoverController initWithContentViewController NSGenericException,第1张

概述以下代码: listViewPopoverControllerOL = [[UIPopoverController alloc] initWithContentViewController:myBranchesListViewPage]; 在iPad2与iOS5之间产生以下崩溃.作为评论,我必须注意到,相同的代码在iOS4.3中完美地工作. *** Terminating app due to u 以下代码:
ListVIEwPopoverControllerol = [[UIPopoverController alloc] initWithContentVIEwController:myBranchesListVIEwPage];

在iPad2与iOS5之间产生以下崩溃.作为评论,我必须注意到,相同的代码在iOS4.3中完美地工作.

*** Terminating app due to uncaught exception 'NSGenericException',reason: 'The content vIEw controller argument must be the root of its associated vIEw controller hIErarchy.'*** First throw call stack:(0x370cb8bf 0x35eaa1e5 0x370cb7b9 0x370cb7db 0x306f378d 0x306f0db9 0x5692d 0x567d1 0x37025435 0x303499eb 0x303499a7 0x30349985 0x303496f5 0x3034a02d 0x3034850f 0x30347f01 0x3032e4ed 0x3032dd2d 0x35bdfe13 0x3709f553 0x3709f4f5 0x3709e343 0x370214dd 0x370213a5 0x35bdefed 0x3035c743 0x2871 0x2830) terminate called throwing an exception

其中“myBranchesListVIEwPage”被定义为:

MyBranchesListVIEw_iPad* myBranchesListVIEwPage

和“MyBranchesListVIEwPage”定义为:

MyBranchesListVIEw_iPad : UIVIEwController<UItableVIEwDelegate,UItableVIEwDataSource,MyDetailParserDelegate,UISplitVIEwControllerDelegate>

我不知道为什么我在iOS5(Xcode 4.2)中有这个问题,但不是iOS4.3(Xcode 4.1)

提前致谢

解决方法 我有同样的问题.在我的情况下,我正在做以下事情:
MyVIEwController * popupController = [[MyVIEwController alloc] initWithNibname:@"MyVIEwController" bundle:nil];[popupController setDelegate:self];UINavigationController *  navigationController = [[UINavigationController alloc] initWithRootVIEwController:popupController];[navigationController setNavigationbarHIDden:YES animated:NO ]; UIPopoverController* aPopover = [[UIPopoverController alloc]                        initWithContentVIEwController:popupController];[popupController release];[navigationController release];

为了解决这个问题,我刚刚更改为在navControlController中传递给UIPopoverController而不是popupController的init:

UIPopoverController* aPopover = [[UIPopoverController alloc]                initWithContentVIEwController:navigationController];

没有将导航控制器添加到popupController中也修复它,但是您显然在d出窗口中没有导航控制器.

MyVIEwController * popupController = [[MyVIEwController alloc] initWithNibname:@"MyVIEwController" bundle:nil];[popupController setDelegate:self];UIPopoverController* aPopover = [[UIPopoverController alloc]                initWithContentVIEwController:popupController];[popupController release];
总结

以上是内存溢出为你收集整理的xcode – iOS5 iPad UIPopoverController initWithContentViewController NSGenericException全部内容,希望文章能够帮你解决xcode – iOS5 iPad UIPopoverController initWithContentViewController NSGenericException所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1094973.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存