我想html_instructions
从下面的 URL 中获取指定的数据。我可以从这个URL获取所有数据。
但我html_instructions
只需要具体的。如何拆分数据?
我使用以下代码将 URL 转换为 NSData:
NSString *url = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/directions/json?origin=Chennai&destination=Madurai&sensor=false"];
NSURL *googleRequestURL=[NSURL URLWithString:url];
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL: googleRequestURL];
});