gpt4 book ai didi

iphone - Objective-C 的 "stringWithContentsOfURL"替代品是什么?

转载 作者:太空狗 更新时间:2023-10-30 03:10:12 25 4
gpt4 key购买 nike

我在网上找到了一个使用 stringWithContentsOfURL 命令的教程,该命令现已从 iPhone OS 3.0 开始弃用。但是我找不到我打算使用什么,以及如何实现它。

下面是围绕 stringWithContentsOfURL 行的代码,以备您需要时引用。

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", 
[addressField.text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString]];
NSArray *listItems = [locationString componentsSeparatedByString:@","];

谢谢。

最佳答案

谢谢 Greg,但对于所有其他初学者来说,这里是一个例子

NSError* error = nil;
NSString* text = [NSString stringWithContentsOfURL:TheUrl encoding:NSASCIIStringEncoding error:&error];
if( text )
{
NSLog(@"Text=%@", text);
}
else
{
NSLog(@"Error = %@", error);
}

关于iphone - Objective-C 的 "stringWithContentsOfURL"替代品是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2039203/

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