我不确定我要问的问题实际上是NSDictionary
是否有多个键但是没问题。
我想要做的是创建一个NSDictionary
,其中包含我的数据的键和值,然后将其转换为JSON
格式。 JSON
格式看起来完全如下:
{
"eventData": {
"eventDate": "Jun 13, 2012 12:00:00 AM",
"eventLocation": {
"latitude": 43.93838383,
"longitude": -3.46
},
"text": "hjhj",
"imageData": "raw data",
"imageFormat": "JPEG",
"expirationTime": 1339538400000
},
"type": "ELDIARIOMONTANES",
"title": "accIDENTE"
}
我只使用NSDictionaries
这样:
NSArray *keys = [NSArray arrayWithObjects:@"eventDate", @"eventLocation", @"latitude" nil];
NSArray *objects = [NSArray arrayWithObjects:@"object1", @"object2", @"object3", nil];
dictionary = [NSDictionary dictionaryWithObjects:objects forKeys:keys];
但上述格式并非全部都与关键价值有关。
所以我的问题是NSDictionary
将如何适应JSON
格式?
感谢您阅读我的帖子,对不起,如果有任何困惑。
答案 0 :(得分:35)
您知道另一个NSDictionary
内有NSDictonary
吗?
NSDictionary *eventLocation = [NSDictionary dictionaryWithObjectsAndKeys:@"43.93838383",@"latitude",@"-3.46",@"latitude", nil];
NSMutableDictionary *eventData = [NSDictionary dictionaryWithObjectsAndKeys:eventLocation,@"eventLocation", nil];
[eventData setObject:@"Jun 13, 2012 12:00:00 AM" forKey:@"eventDate"];
[eventData setObject:@"hjhj" forKey:@"text"];
.
.
.
NSMutableDictionary *finalDictionary = [NSMutableDictionary dictionaryWithObjectsAndKeys:eventData,@"eventData", nil];
[finalDictionary setObject:@"ELDIARIOMONTANES" forKey:@"type"];
[finalDictionary setObject:@"accIDENTE" forKey:@"title"];
答案 1 :(得分:15)
现在有了Objective-C文字,有一种更好,更简单,更简洁的方法来实现这一目标。这是您使用这种新语法的确切字典:
NSDictionary *dictionary = @{
@"eventData": @{
@"eventDate": @"Jun 13, 2012 12:00:00 AM",
@"eventLocation": @{
@"latitude": @43.93838383,
@"longitude": @-3.46
},
@"text": @"hjhj",
@"imageData": @"raw data",
@"imageFormat": @"JPEG",
@"expirationTime": @1339538400000
},
@"type": @"ELDIARIOMONTANES",
@"title": @"accIDENTE"
};
// Prints: "43.93838383"
NSLog(@"%@", dictionary[@"eventData"][@"eventLocation"][@"latitude"]);
答案 2 :(得分:2)
如何使用NSDictionary创建NSArray和Access对象?
...创建NSArray
NSArray *studentkeys = [NSArray arrayWithObjects:@"studentName", @"studentBirthDate", @"studentCity", @"studentMobile" nil];
NSArray *objects = [NSArray arrayWithObjects:@"Pravin", @"27/08/1990", @"Bhavnagar",@"7878007531", nil];
...使用NSDictionary访问NSArray对象
NSDictionary *dictionary = [NSDictionary dictionaryWithObjects:objects forKeys:keys];
答案 3 :(得分:1)
这是结构:
您的根对象是NSMutableDictionary
eventData
- 具有键和对象的对象NSMutableDictionary
的键:
- >键eventDate
对象NSString
- >键eventLocation
对象NSMutableDictionary
,包含键和对象:
---->密钥latitude
对象NSNumber
---->密钥longitude
对象NSNumber
- >密钥text
对象NSString
- >密钥imageData
对象NSString
后来转换为NSData
- >密钥imageFormat
对象NSString
- >密钥expirationTime
对象NSNumber
对象type
的{{1}}键
对象NSString
title
键
答案 4 :(得分:0)
如果您想要多个类别,可以使用此格式
NSDictionary *jsonObject = @{
@"data1":@[
@{
@"title":@"A"
@"subData" : @[
@{
@"title":@"aa"
}]
}
]
};