gpt4 book ai didi

ios - UINavigationController 在呈现 ViewController 时不执行completionBlocks

转载 作者:行者123 更新时间:2023-11-29 04:11:26 30 4
gpt4 key购买 nike

这个很棘手。我有一个 UINavigationController 的子类,它重写 pop/push 和present/dismiss 方法。在这里,如果 UINavigationController 子类包含在弹出窗口中,我会自定义行为以设置正确的大小。没什么太奇特的,但我这样做是为了不编写所有 ViewController 的子类并使用自动布局。

但是, presentViewController:animated:completion:dismissViewControllerAnimated:completion: 的完成 block 不会被执行。这就是奇怪的部分:完全相同的代码在 iPhone 上可以正常工作,但在 iPad 上却无法执行这些 block 。这是一个代码示例。

@interface SBNavigationController : UINavigationController

@end

@implementation SBNavigationController

- (void) presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion
{
if ([viewControllerToPresent isKindOfClass:[UINavigationController class]])
{
UINavigationController *nav = (UINavigationController *) viewControllerToPresent;
[nav.topViewController setContentSizeForViewInPopover:kFullSizePopover];

} else
{
[viewControllerToPresent setContentSizeForViewInPopover:kFullSizePopover];
}

viewControllerToPresent.modalPresentationStyle = UIModalPresentationCurrentContext;
[super presentViewController:viewControllerToPresent animated:flag completion:completion];
}

- (void)dismissViewControllerAnimated:(BOOL)flag completion:(void (^)(void))completion ;
{
[super dismissViewControllerAnimated:flag completion:completion];
}
@end

使用它的代码是这样的:

@implementation SBInviteFBContactViewController

...

- (void) createInviteByMailViewController
{
SBInviteMailViewController *mailInvite = [[SBInviteMailViewController alloc] initWithDelegate:self userInfo:_userInfo];

UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:mailInvite];

[self.navigationController presentViewController:navController
animated:YES
completion:^{

NSLog(@"presentViewController:");

}];

}

#pragma mark SBInviteMailProtocol

- (void) invitedMailContacts:(NSArray *)contacts;
{
[self.navigationController dismissViewControllerAnimated:YES
completion:^{
NSLog(@"animation Ended");
if (contacts) {
[self.delegate invitedMailContact:contacts];
[self popViewControllerAnimated:YES];
}
}];
}

...

@end

有什么想法吗?

最佳答案

这似乎是一个巨大错误。请向 Apple 报告(我也将这样做)。我找到了这里的方法,因为我自己刚刚发现了同样的错误,并进行了谷歌搜索,看看是否有其他人在谈论它。

我创建了一个非常小的演示项目,其架构如下:

  • ViewController - 主视图 Controller

    它的 View 包含一个按钮“Tap Me”。

  • PopoverViewController - 在弹出窗口中呈现

    当您在主 ViewController 中点击 Tap Me 时,它​​会创建一个 UIPopoverController,其中 this vc、PopoverViewController 作为其内容 View Controller ;它的 View 也包含一个“Tap Me”按钮。

  • PopoverViewController2 - 在同一弹出窗口中“以模式方式”呈现

    PopoverViewController2 将其 modalPresentationStyle 设置为 UIModalPresentationCurrentContext,以便它可以出现在弹出窗口内。当您在弹出窗口中点击“Tap Me”时,PopoverViewController 会调用 presentViewController:...

代码如下:

- (IBAction)doTapMe:(id)sender {
NSLog(@"about to present view controller");
[self presentViewController:[PopoverViewController2 new] animated:YES completion:^{
NSLog(@"in completion handler"); // never called!
}];
NSLog(@"did present view controller");
}

日志显示“即将呈现 View Controller ”和“确实呈现 View Controller ”,但“在完成处理程序中”永远不会出现,即使“模态” View Controller 的 View 很好地出现在弹出窗口中。

(此外,更改为 animated:NO 不仅不能解决问题,还会导致视觉故障。)

关于ios - UINavigationController 在呈现 ViewController 时不执行completionBlocks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14343480/

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