在iPhone中检索具有特定键的字典的数组

时间:2011-09-19 06:45:13

标签: iphone nsarray nsdictionary

我在检索具有6个键的字典的数组时遇到问题。 当我把日志放到数组..打印

"<+25.51695000, +84.53490000> +/- 0.00m (speed -1.00 mps / course -1.00) @ 9/19/11 12:10:43 PM India Standard Time", 

我只想检索+25.51695000, +84.53490000坐标。我怎么能这样做。

1 个答案:

答案 0 :(得分:0)

通过NSLog(?)输出进行猜测,NSArray中的内容不是NSDictionary元素,而是一堆CLLocation元素。

您可以在此处查看文档:

CLLocation

基本上,你会这样做:

CLLocation *location = (CLLocation *)[myArray objectAtIndex:0];
a = location.coordinate.latitude;
b = location.coordinate.longitude;