0
所以我有這個從數組中提取的值
NSLog(@"%@",[status valueForKey:@"coordinates"]);
這給了我這個
{
coordinates = (
"-91.17785719",
"30.41023765"
);
type = Point;
}
我怎能就這樣提取的經度和緯度?
所以我有這個從數組中提取的值
NSLog(@"%@",[status valueForKey:@"coordinates"]);
這給了我這個
{
coordinates = (
"-91.17785719",
"30.41023765"
);
type = Point;
}
我怎能就這樣提取的經度和緯度?
so status [@「coordinates」]是另一個帶有另一個座標鍵的字典嗎?
如果是這樣那就試試這個: status[@"coordinates"][@"coordinates"][0]
將使用1而不是0生成字符串「-91.17785719」 會得到另一個值
太好了!謝謝。 –
如果有效,你應該接受答案。 –
對不起!我打算將它標記爲已接受,但它不會讓我這樣做。 –