gpt4 book ai didi

ios - parentViewController 返回不正确的父级

转载 作者:行者123 更新时间:2023-11-28 19:22:53 27 4
gpt4 key购买 nike

我正在从导航 subview (ConnectionScreen) 中创建模态视图 (OnlinePeerBrowser)。我需要从模态视图的父 View 中引用方法。出于某种原因,模态视图认为它的父 View 是 rootView 而不是我从中创建模态的 View 。

我做错了什么?

我创建模态视图的代码

@implementation ConnectionScreen {
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
self.title = @"ConnectionScreen";
}
return self;
}

...

- (void)peerPickerController:(GKPeerPickerController *)picker didSelectConnectionType:(GKPeerPickerConnectionType)type {
if (type == GKPeerPickerConnectionTypeOnline) {
OnlinePeerBrowser *controller = [[OnlinePeerBrowser alloc]
initWithNibName:@"OnlinePeerBrowser" bundle:nil];
[self presentModalViewController:controller animated:YES];
NSLog(@"my current view title: %@", [self title]);
NSLog(@"parent of the controller title: %@", [controller.parentViewController title]);

输出是:

 my current view title: ConnectionScreen
parent of the controller title: Home

正在从 ConnectionScreen 实例中创建模态视图并将其呈现为 ModalViewController。为什么它使用根窗口作为父窗口?

-------- 更多关于这个------------我向 Apple 提交了一个 bug,认为我很聪明 ;)。他们实际上发现我的代码在推送导航 Controller 时存在问题(滚动到底部查看)。我不明白我做错了什么。他们还确保这种类型的事情不会在 5.0 中发生,并优雅地退出解决 API 更改,如下文 Vinnie 所述。

如果有人能看到我在下面推送的 View 中做错了什么,我将不胜感激。------ 更多相关信息 ----------

在针对 iOS 开发的 ModalViewController 提交错误报告后,刚刚收到 Apple 的回复。我试图破译他们的 react 。(请注意,支持回复说保密。因为你们都是注册的 Apple 开发者,所以我认为可以分享。)

从下面的回复中,我无法判断他们是在说我创建导航 Controller 和推送 Root View 的方法是错误的,还是他们承认了这个错误并声明他们在 iOS 5 中对此进行了调和.

这是我提交的重复“错误”的代码。

对我提交的错误的回应:


错误标题:模态视图的父 View 不正确

重现步骤:创建一个导航 Controller 推送标题为“Home”的 View Controller 在“Home” View Controller 上创建一个按钮,用于推送另一个 View Controller “NewView”在“NewView”上创建一个拉出模态视图的按钮在该模态视图中调用 self.parentViewController.title

预期与实际结果:模态视图的父标题应该是NewView;但是,它显示模态视图的父 View 是 Home。

注意事项:我的解决方法是在使模态视图可见之前在模态视图 myParent 上设置一个属性。


他们的 react


工程部门已根据以下信息确定此问题的行为符合预期:

此测试应用程序将在 5.0 中退出并出现 UIViewControllerHierarchyInconsistency。 applicationDidFinishLaunching 方法是高度可疑的(也是 5.0 的原因)异常。窗口的 Root View Controller 被推送为 View Controller 的 subview ,然后将其 View 添加到窗口。

这可能会导致各种不一致,因此我们现在在 5.0 上提出这个问题。请注意,在 5.0 中,parentViewController 不再返回模态呈现器。我们添加了 presentingViewController 方法来涵盖这种情况。 parentViewController 现在被保留以指示 View Controller 之间的包含关系。


他们声称的代码是可疑的:

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

// Override point for customization after application launch.

self.navigationController = [[UINavigationController alloc] init];

self.window.rootViewController = self.viewController;

[self.navigationController pushViewController:self.window.rootViewController animated:NO];

// Add the navigation controller's view to the window and display.

[self.window addSubview:self.navigationController.view];

[self.window makeKeyAndVisible];

return YES;

最佳答案

如果在 iOS 5 中对此进行测试,您将获得此属性的错误值。从 iOS 5 开始,调用 presentModalViewController 时不再设置 parentViewController。相反,您将不得不使用 presentingViewController 属性。但是,如果您支持其他版本的 iOS,则必须稍微花点心思。要么像这样做一些检查:

if([self respondsToSelector:@selector(presentingViewController)])
;//... do stuff to the presentingViewController
else
;//... do stuff to the parentViewController

您也可以设置自己的委托(delegate)或创建一些 customParentViewController 属性来确定。我个人走了这条路。

有些人只想调用[self.parentViewController dismissModalViewController]。在这种情况下,请使用 [self dismissModalViewController],因为它只会为您爬上堆栈并自行解散。

是的,任何在 iOS 4 及以下版本中编写的代码现在都无法在 iOS 5 设备上使用,因此请检查应用商店中的其他应用。

关于ios - parentViewController 返回不正确的父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7211072/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com