NSData* jsonDataToSendTheServer;
NSDictionary *setUser = [NSDictionary
dictionaryWithObjectsAndKeys:[@"u" stringByAppendingString:my.id],@"id",
@"GET_USER_INFO",@"command",
@"",@"value",
nil];
NSLog(@"%@", jsonDataToSendTheServer);
これが私のコードです。上記のコードを実行すると、このプリントが表示されます
<7b226964 223a2275 35383738 37373334 31222c22 636f6d6d 616e6422 3a224745 545f5553 45525f49 4e464f22 2c227661 6c756522 3a22227d>
Jsonを作成できるかどうかはわかりません。
どうすれば修正できますか?
Jsonに変換するためのこの行がありません
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:setUser
options:NSJSONWritingPrettyPrinted error:&error];
ここにあなたを助けるかもしれないNSJSONSerializationのチュートリアルがあります: http://www.raywenderlich.com/5492/working-with-json-in-ios-5
その後、NSDataをNSStringに変換して出力できます。
以下を試してJSONを作成できます。
NSArray *objects=[[NSArray alloc]initWithObjects:objects here,nil];
NSArray *keys=[[NSArray alloc]initWithObjects:corresponding keys of objects,nil];
NSDictionary *dict=[NSDictionary dictionaryWithObjects:objects forKeys:keys];
NSData *jsonData=[NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];
これは私の場合完全に機能しました
以下をお試しください
NSDictionary *o1 = [NSDictionary dictionaryWithObjectsAndKeys:
@"ABCD", @"key1",
@"EFG", @"key2",
nil];
NSDictionary *o2 = [NSDictionary dictionaryWithObjectsAndKeys:
@"XYZ", @"key1",
@"POI", @"key2",
nil];
NSArray *array = [NSArray arrayWithObjects:o1, o2, nil];
NSString *jsonString = [array JSONRepresentation];
// jsonStringをサーバーに送信します上記のコードを実行した後、jsonStringには以下が含まれます。
[
{
"key1": "ABCD",
"key2": "EFG"
},
{
"key1": "XYZ",
"key2": "POI"
}
]
これを試して
NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://api.iospond.com/api/index.php/GetData"]];
NSError *error=nil;
id response=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
NSLog(@"Your JSON Object: %@ Or Error is: %@", response, error);
NSDictionary *jsonObject = @{
@"a":@[
@{
@"title1”:@“AA”,
@"title2” : @“BB”,
@"subcats" : @[
@{
@"title1” : @“CC”,
@"title2” :@“DD”
}
]
}
]
};