0

我有一个PHPWeb 服务,它返回一个JSON具有这种格式的字符串:

[{"latitud":"37.995914","longitud":"-1.139705","nombre":"Miguel de 
Unamuno"},{"latitud":"37.995433","longitud":"-1.140143","nombre":"Calle
 Pina"},{"latitud":"37.99499","longitud":"-1.140361","nombre":"Calle 
Moncayo"},{"latitud":"37.993918","longitud":"-1.139392","nombre":"Calle 
Moncayo2"},{"latitud":"37.994588","longitud":"-1.138543","nombre":"Calle 
Salvador de Madriaga"}]

在我的项目中,我有一个具有下一个结构的自定义类:

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>

@interface PCoordenada : NSObject

@property (nonatomic) CLLocationCoordinate2D *punto;
@property (nonatomic,strong) NSString *nombre;
@end

然后,我在主应用程序中使用其他类:

#import <UIKit/UIKit.h>
#import "PCoordenada.h"

@interface TestViewController : UIViewController

@property (nonatomic,strong) NSData * HTTPResponse;
@property (nonatomic,strong) NSDictionary * dic;
@property (nonatomic,strong) NSMutableArray *arrayCoord;
@property (nonatomic,strong) PCoordenada *coor;

-(IBAction)GetDataFrom:(id)sender;

@end

我想知道如何制作包含 JSON 字符串信息的 PCoordenada 对象数组。

任何人都可以帮助我吗?

提前致谢 :)

4

2 回答 2

4

做这个:

NSData *theData = [NSData dataWithContentsOfURL:[NSURL URLWithString:YOUR_URL]];
NSArray *arrRequests = [NSJSONSerialization JSONObjectWithData:theData options:NSJSONReadingMutableContainers error:nil];

这会将 JSON 放入对象的 NSArray 中。这些对象中的每一个都是一个 NSDictionary。那么你只需要遍历 NSArray 来获取每个的 NSDictionary 。

//now let's loop through the array and generate the necessary annotation views
for (int i = 0; i<= arrRequests.count - 1; i++) {
    //now let's dig out each and every json object
    NSDictionary *dict = [arrRequests objectAtIndex:i];}

您从循环中获取的每个 NSDictionary 都将 JSON 属性作为 NSDictionary 中的键:

 NSString *address = [NSString stringWithString:[dict objectForKey:@"Address"]];
于 2012-07-04T16:18:44.017 回答
1

在读取 JSON 以获得更好的性能时,使用多线程也是一个很好的做法。 本文有一个非常简单的操作方法。我推荐阅读。

于 2012-07-04T18:59:54.397 回答