当我在一个条形项上选项卡显示一个带有视图的d出窗口时应用程序崩溃…
这是我得到的错误
"reason: 'A vIEw can only be associated with at most one vIEw controller at a time! VIEw <UIVIEw: 0xaa7d730; frame = (20 0; 748 1024); autoresize = RM+BM; layer = <CALayer: 0xaa7d790>> is associated with <TYOFormVIEwController: 0xaa7d8b0>. Clear this association before associating this vIEw with <TYOFormVIEwController: 0x14c68a70>.'"
这是声明UIVIEwController和UIPopoverController的方法.
- (IBAction)TestDriveTapped:(ID)sender{if (PopoverController != nil) { [PopoverController dismisspopoverAnimated:YES]; self.PopoverController = nil;}if (self.PopoverController == nil) { UIVIEwController *bookTestDrive =[[TYOFormVIEwController alloc] initWithNibname:@"TYOBookTestDriveForm" bundle:nil]; UIPopoverController *poc = [[UIPopoverController alloc] initWithContentVIEwController:bookTestDrive]; [poc presentPopoverFrombarbuttonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES]; self.PopoverController = poc;} else { if (PopoverController != nil) { [PopoverController dismisspopoverAnimated:YES]; self.PopoverController = nil; }}
}
错误说我必须清除与TYOFormVIEwController的关联,以将它与TYOFormVIEwController关联….这是怎么发生的?
非常喜欢你对这个问题的帮助… Jstuck整天都在用它…
谢谢
解决方法 加载一堆xib文件时,我也发生了这种情况.解决方案是进入界面构建器并删除与文件所有者具有相同类名的任何视图控制器对象.所以在我的情况下,这些文件现在只包含视图和子视图,连接到文件的所有者 – 没有控制器.在解释xib文件时,iOS 6中的某些内容必定会发生变化.
总结以上是内存溢出为你收集整理的UIViewControllerHierarchyInconsistency在ios5中工作,但在ios6中不工作全部内容,希望文章能够帮你解决UIViewControllerHierarchyInconsistency在ios5中工作,但在ios6中不工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)