-5
A
回答
1
嘗試NSJSONSerialization
並將其分配給id
類型的變量,你可以投它就像使用(NSArray)
或者你可以從NSJsonserialization
0
方法1
NSString * jstring = @"[1451,1450,1449]"; //your json string
jstring = [jstring stringByReplacingOccurrencesOfString:@"[" withString:@""];
jstring = [jstring stringByReplacingOccurrencesOfString:@"]" withString:@""];
NSArray * intArray = [string componentsSeparatedByString:@","];
//you could create your int from the array like this
int x = [[intArray objectAtIndex:0]intValue];
直接分配到
NSArray
類型的變量
方法2
NSObject *o =[NSJSONSerialization JSONObjectWithData:data
options:NSJSONReadingMutableContainers
error:&error];
NSArrary *arr=(NSArray*)o;
相關問題
- 1. 將JSON轉換爲NSArray
- 2. 如何將JSON數組轉換爲NSArray
- 3. 將JSON從GitHub轉換爲NSArray
- 4. 將NSArray轉換爲JSON對象數組
- 5. 將SimpleXML轉換爲JSON PHP
- 6. PHP - 將JSON轉換爲Plist?
- 7. 將NSArray轉換爲NSDictionary
- 8. 將NSArray值轉換爲int
- 9. 將std:vector轉換爲NSArray
- 10. 將NSArray轉換爲CLLCoordinate
- 11. 將JavaUtilList轉換爲NSArray?
- 12. 將NSArray轉換爲MKPlacemark
- 13. 將NSDictionary轉換爲NSArray
- 14. 將NSString轉換爲NSArray
- 15. 將NSArray轉換爲NSSortDescriptor
- 16. 在iOS中將字典的NSArray轉換爲JSON數組
- 17. 如何將JSON字符串轉換爲NSArray?
- 18. NSJSONSerialization - 如何正確地將JSON轉換爲NSArray?
- 19. 將json轉換爲數組php將數組轉換爲字符串轉換
- 20. 將JSON與PHP轉換爲JavaScript
- 21. 使用PHP將CSV轉換爲JSON
- 22. Codeigniter/PHP /將對象轉換爲JSON
- 23. 難以將php轉換爲json文件
- 24. 將JSON響應轉換爲PHP變量
- 25. 將C#/ JSON轉換爲PHP腳本
- 26. 使用PHP將CSV轉換爲JSON?
- 27. php將文本轉換爲json變量
- 28. PHP庫將JSON轉換爲CSV?
- 29. 將RiotGames JSON API轉換爲PHP
- 30. JSON - 將代碼從JQuery轉換爲PHP
歡迎堆棧溢出,你在這裏張貼問題之前,請閱讀[如何提出頁](http://stackoverflow.com/help/how-to-ask) ,發佈提示。 – Quill