gpt4 book ai didi

ios - 如何在 Controller 出现时初始化对象而不用 GCD 阻塞 UI

转载 作者:行者123 更新时间:2023-12-02 03:00:04 25 4
gpt4 key购买 nike

在我的应用程序中,我需要在点击按钮时显示 UIImagePickerController。这是我在按下 Controller 上的按钮时调用的方法中使用的代码:

- (IBAction)choosePressed:(id)sender {
if (!self.pickerController) self.pickerController = [[UIImagePickerController alloc]init];
self.pickerController.delegate = self;
self.pickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self.navigationController presentViewController:self.pickerController animated:YES completion:nil];
}

问题是 UIImagePickerControllers 加载速度非常慢,所以我认为将选择器的初始化移到 viewDidAppear:animated 中方法(可能在另一个线程中)是加快选择器创建/显示过程的好方法,所以我这样做了:

-(void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
dispatch_queue_t myQueue = dispatch_queue_create("Picker Queue", NULL);
dispatch_async(myQueue, ^{
self.pickerController = [[UIImagePickerController alloc]init];
self.pickerController.delegate = self;
});
}

- (IBAction)choosePressed:(id)sender {
self.pickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self.navigationController presentViewController:self.pickerController animated:YES completion:nil];
}

有了这个,当按下按钮时,pickerController会立即显示,但当加载主 Controller 时,UI会卡住一点(可能是因为pickerController的初始化),但初始化应该在另一个线程中完成,因为我使用dispatch_async机制不是吗?我的代码有错误吗?

我对 GCD 很陌生,所以我一定错过了一些东西!

最佳答案

从后台线程访问 UIKit 是对 UIKit 的滥用。您也许可以短暂显示“正在加载...”屏幕。我认为最好的策略就是不要担心。

关于ios - 如何在 Controller 出现时初始化对象而不用 GCD 阻塞 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14750688/

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