gpt4 book ai didi

ios - ios如何从URL中获取数据

转载 作者:行者123 更新时间:2023-11-29 00:59:43 28 4
gpt4 key购买 nike

嘿,我是 ios 新手,请帮助从这个 URL 获取数据...

NSString *urlString = @" http://api.openweathermap.org/data/2.5/forecast/daily?q=Indore&mode=json&units=metric&cnt=10&APPID=fc632e2569dbdbb07ca79e239faa0281";

最佳答案

像这样使用 NSUrlSession:

NSString *urlString = @"http://api.openweathermap.org/data/2.5/forecast/daily?q=Indore&mode=json&units=metric&cnt=10&APPID=fc632e2569dbdbb07ca79e239faa0281";
NSURLSession *session = [NSURLSession sharedSession];
[[session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
// handle the response
}] resume];

关于ios - ios如何从URL中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37158227/

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