如何将NSString转换为NSDictionary对象?要么 从NSString初始化NSDictionary?
这是要转换的NSString。在这个字典示例中,插入了一个数组:
{
("My value.")
}
答案 0 :(得分:0)
您可能希望使用可以从NSArrays和NSDictionarys轻松转换(通过NSData)的JSON字符串。
参见NSJSONSerialization: http://developer.apple.com/library/ios/#documentation/Foundation/Reference/NSJSONSerialization_Class/Reference/Reference.html
答案 1 :(得分:0)
我认为你的对象应该是像这样的键值格式......
{
"myData":("My value.")
}