gpt4 book ai didi

ios - 进入viewController后如何加载数据?

转载 作者:行者123 更新时间:2023-12-01 17:38:02 25 4
gpt4 key购买 nike

我有一个包含一些GIF图像的viewController,加载这些图像会占用大量内存,因此每次进入该viewController都需要花费我几秒钟的时间,请问有什么方法可以首先输入此viewCOntroller,然后加载数据吗?我不知道NSThread是否可以工作。我的英语不好,希望您能理解我的问题。

最佳答案

是的,最简单的方法是使用集中式中央调度

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ //enter a background thread
UIImage * img = [UIImage imageNamed:@"image.jpg"]; //load image in background

dispatch_sync(dispatch_get_main_queue(), ^{ //return to main thread
[[self imageView] setImage: img]; //set the imageViews image
});
});

关于ios - 进入viewController后如何加载数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33274690/

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