1.I創建類對象,然後用這個代碼如何類對象轉換成JSON字符串的目標C
csJastorPollQuestion *pq = [[csJastorPollQuestion alloc] initWithID:@"01" Name:@"AAA"];
2.I顯示「csJastorPollQuestion」中的NSLog它的存在價值上我的課
#<csJastorPollQuestion: id = (null) { ID = 01; Name = AAA; }>
3.I轉換 「csJastorPollQuestion」 以JSON字符串與此代碼
NSData *jsd = [NSJSONSerialization dataWithJSONObject:pq options:NSJSONWritingPrettyPrinted error:&er];
NSString *jsonString = [[NSString alloc] initWithData:jsd encoding:NSUTF8StringEncoding];
4.當我跑我的親ject它顯示錯誤此
[NSJSONSerialization dataWithJSONObject:options:error:]: Invalid top-level type in JSON write'
5.什麼是將「csJastorPollQuestion」轉換爲json字符串的正確方法?
將其粘貼在字典中。 JSON要求頂級對象是字典或數組。 – CodaFi
我想要一些例子,你可以提供給我嗎? – user2955394