gpt4 book ai didi

iphone - 如何将for循环放到一个单独的线程中

转载 作者:行者123 更新时间:2023-11-28 22:26:01 26 4
gpt4 key购买 nike

我有一个最多可以读取 10 万行的 for 循环。
当我启动此功能时,它会阻塞我的 UI,直到它完成。

for (Item* sp in items){
data = [data stringByAppendingFormat:@"\"%@\",\"%@\","\n", ....];
}

我怎样才能把它放到单独的线程中,这样它就不会阻塞 UI?

最佳答案

我不认为你已经提供了一个完整的例子,但简单使用 Grand Central Dispatch应该做的伎俩:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

for (Item* sp in items){
data = [data stringByAppendingFormat:@"\"%@\",\"%@\","\n", ....];
}

// Then if you want to "display" the data (i.e. send it to any UI-element):
dispatch_async(dispatch_get_main_queue(), ^{
self.someControl.data = data;
});

// else simply send the data to a web service:
self.webService.data = data;
[self.webService doYourThing];

});

关于iphone - 如何将for循环放到一个单独的线程中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18957838/

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