gpt4 book ai didi

ios - 无法在 ViewController 之间移动

转载 作者:行者123 更新时间:2023-11-28 23:34:45 28 4
gpt4 key购买 nike

我的应用程序下载数据,当数据下载完毕后,我尝试将用户发送回应用程序的主 ViewController,但它不起作用。

代码:

   UIStoryboard *storyboard=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
Full_Sync *fullSyncController = [storyboard instantiateViewControllerWithIdentifier:@"ViewControllerROOTIdentifier"];
[self.navigationController pushViewController:fullSyncController animated:NO];

该方法在 NSlog 工作时被调用,但这段代码似乎没有运行。该代码在应用程序的其他部分完美运行。不知道为什么它在这里不起作用。

最佳答案

确保在收到 API 的结果后返回主线程。网络调用是在另一个线程上进行的异步任务,并且由于您需要在主线程上进行任何与 UI 相关的操作,因此您需要这样做(Objective-C):

dispatch_async(dispatch_get_main_queue(), ^{
// Perform your transition here.
});

您还需要确保正在执行转换的 View Controller 嵌入 UINavigationController 中!

关于ios - 无法在 ViewController 之间移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55281116/

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