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];
});