0

如何将 NSString 转换为 NSDictionary 对象?或者从 NSString 初始化 NSDictionary?

这是一个要转换的 NSString。在这个字典示例中,插入了一个数组:

{

("My value.")

}
4

2 回答 2

0

您可能希望使用可以轻松地从 NSArrays 和 NSDictionarys 转换(通过 NSData)的 JSON 字符串。

请参阅 NSJSONSerialization:http: //developer.apple.com/library/ios/#documentation/Foundation/Reference/NSJSONSerialization_Class/Reference/Reference.html

于 2012-08-13T22:17:25.783 回答
0

我认为你的对象应该是这样的键值格式......

{
    "myData":("My value.")
}
于 2017-11-10T11:22:47.980 回答