gpt4 book ai didi

ios - 在后台线程上从 WebService 解析 JSON 数据

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:43 24 4
gpt4 key购买 nike

我有一个构建包的方法,将它发送到 Web 服务,取回一个包,打开它并返回给我一个 nsdictionary。我如何在后台队列中调用它以便在它请求数据时显示 HUD?

最佳答案

您可以分离一个新线程,如下所示

- (void) fetchData
{
//Show Hud

//Start thread
[NSThread detachNewThreadSelector:@selector(getDataThreaded)
toTarget:self
withObject:nil];
}

- (void) getDataThreaded
{
//Start Fetching data

//Hide hud from main UI thread
dispatch_async(dispatch_get_main_queue(), ^{
//Update UI if you have to
//Hide Hud
});
}

关于ios - 在后台线程上从 WebService 解析 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10920080/

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