Ios NSJSONSerialization解析数据问题

Ios NSJSONSerialization解析数据问题,ios,iphone,google-maps-api-3,time,nsjsonserialization,Ios,Iphone,Google Maps Api 3,Time,Nsjsonserialization,我正在分析以下数据:- NSURL *URL = [NSURL URLWithString:@"http://maps.googleapis.com/maps/api/directions/json?origin=40.714353,-74.005973&destination=40.650000,-73.950000&sensor=false&units=metric&mode=transit&departure_time=1396594530&

我正在分析以下数据:-

NSURL *URL = [NSURL URLWithString:@"http://maps.googleapis.com/maps/api/directions/json?origin=40.714353,-74.005973&destination=40.650000,-73.950000&sensor=false&units=metric&mode=transit&departure_time=1396594530&alternatives=true"];
NSData* data = [NSData dataWithContentsOfURL:URL];
NSDictionary *dataDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
仅部分结果而非全部结果显示:

2014-04-04 15:24:10.036 Animation[478:907] {

routes =     (
            {
        bounds =             {
            northeast =                 {
                lat = "40.715478";
                lng = "-73.94947789999999";
            };
            southwest =                 {
                lat = "40.6497484";
                lng = "-74.01035299999999";
            };
        };
        copyrights = "Map data \U00a92014 Google";
        legs =             (
                            {
                "arrival_time" =                     {
                    text = "03:35"; <<----- missing "am"
                    "time_zone" = "America/New_York";
                    value = 1396596948;
                };
                "departure_time" =                     {
                    text = "03:02";<<----- missing "am"
                    "time_zone" = "America/New_York";
                    value = 1396594936;
                };`
2014-04-04 15:24:10.036动画[478:907]{
路线=(
{
界限={
东北={
lat=“40.715478”;
lng=“-73.949477899999”;
};
西南={
lat=“40.6497484”;
lng=“-74.010352999999”;
};
};
版权所有=“地图数据\U00a92014谷歌”;
腿=(
{
“到达时间”={

text=“03:35”您可以在调用maps api时传递
语言
。将语言设置为en_US可获得所需的结果:

NSURL *URL = [NSURL URLWithString:@"http://maps.googleapis.com/maps/api/directions/json?origin=40.714353,-74.005973&destination=40.650000,-73.950000&sensor=false&units=metric&mode=transit&departure_time=1396594530&alternatives=true&language=en_US"];

调用maps api时,您可以传递
语言
。将语言设置为en_US可获得所需的结果:

NSURL *URL = [NSURL URLWithString:@"http://maps.googleapis.com/maps/api/directions/json?origin=40.714353,-74.005973&destination=40.650000,-73.950000&sensor=false&units=metric&mode=transit&departure_time=1396594530&alternatives=true&language=en_US"];

我认为try sensor=True。我认为这是个问题。同一个问题,我试过了。我认为try sensor=True。我认为这是个问题。同一个问题,我试过了。你是怎么知道的?谷歌提供了你是怎么知道的?谷歌提供了