gpt4 book ai didi

ios - 如果在 -alertView :didDismissWithButtonIndex: 内完成, View 加载速度会很慢

转载 作者:行者123 更新时间:2023-11-29 02:18:03 24 4
gpt4 key购买 nike

我有一个加载空 View 的 loadView 方法

- (void) loadView {
UIViewController *controller = [[UIViewController alloc] init];
[self.navigationController pushViewController:controller animated:YES];
}

如果我从 PresentingVC 的 viewDidLoad 运行它,它运行得很快。

但如果我像这样跑

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
[self loadView]
}

这需要时间。

你会的原因吗?

我什至尝试在主线程上运行。但是没有用。反正没有其他线程在运行/

编辑

它按照下面 Gary 的建议工作

最佳答案

尝试将您的警报 View 委托(delegate)方法更改为:- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex

关于ios - 如果在 -alertView :didDismissWithButtonIndex: 内完成, View 加载速度会很慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28513409/

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