gpt4 book ai didi

iphone - 多次下载文件而不锁定 ios 中的 UI

转载 作者:可可西里 更新时间:2023-11-01 06:27:19 28 4
gpt4 key购买 nike

我有一个数组,其中包含不同的 url 和一组按钮,每个链接都分配给每个按钮。单击按钮时,将下载分配给该特定按钮的 url 中的内容。用户可以同时点击多个按钮,从而可以同时进行多个下载。同时,用户应该可以在另一个 View 中导航,这样下载过程就不会锁定 UI。哪种方法是最好和最简单的实现方法?请分享您的想法。谢谢

最佳答案

只需异步获取数据:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
// The code here is executed when the response from the request comes back.
// The variable "data" will contain the response from the data.
// So you can do something like:
UIImage *anImage = [[UIImage alloc] initWithData:data]];
}];

关于iphone - 多次下载文件而不锁定 ios 中的 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9887632/

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