问题标签 [nsjsonserialization]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
objective-c - Objective-C JSON 类型
我NSJSONSerialization JSONObjectWithData:options:error:
在 iOS 5 项目中使用读取 JSON 字符串并将其转换为 Foundation 对象。有没有一种简单的方法可以确定对象或其某些子对象是数组、字典、数字还是字符串?
objective-c - 如何从 NSData 中分辨出 NSStringEncoding?
我NSData
从+[NSJSONSerialization dataWithJSONObject:options:error:]
. 数据是如何编码的?
iphone - NSJSONSerialization 是否比 JSONKit 更容错、更健壮?
虽然根据基准 JSONKit 更快,但 Github 自述文件充满了错误的 JSON 导致崩溃等的警告。
对我来说,更重要的是没有崩溃,并且 JSON 文件中格式不正确的 Unicode JSON 或其他细微错误不会导致崩溃。
也许速度的提高来自它对错误的严格和不宽容?NSJSONSerialization 在这方面是否更健壮?
ios5 - 如何使用 JSON 序列化 NSDictionary 中的自定义对象?
我有以下代码:
如果对象是NSString
's,它将通过,但是一旦我将 customObject 添加到字典中,它就不再有效。我该如何解决?任何帮助深表感谢。提前致谢!
iphone - How to send JSON data over NSURLConnection
I have successfully created a method which connects to my web service and POSTS a string and receives a string response. However, I am now trying to POST a JSON dictionary created using NSJSONSerialization. However, Xcode is giving me an error. I have tried to convert my initial code. Relevant lines below...
The second line heres complains that I am using NSData where an NSString is required.
The third line complains that loginDataJSON
may not respond to dataUsingEnconding
I seem to be forcing an NSData object (because that what NSJSONSerialization gives me) where it cannot be used. Am I best trying to convert the JSON into a string to use with my existing request code, or should/can I change my request code to accept NSData as opposed to an NSString?
json - 如何在 UITableView 上显示 JSON 数组
JSON数据是这样的......
}
json 数据显示在控制台上,但不在 tableview 上。
这是我的代码片段...
}
这是我的 Tableview 代码..
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *CellIdentifier = @"Cell";
/li>
}
iphone - NSJSONSerialization 不更新数据
我正在尝试使用 iOS5 的 NSJSONSerialization 解析 JSON。这段代码第一次正确地解析了我想要的数据,但是数据只是保持不变。URL 上的 JSON 已经改变,但代码一直给我它解析的第一个数据,现在是不正确的。无论我“构建和运行”多少次,它总是给我同样的东西。
当我将代码复制到新项目时,它再次工作,第一次,然后做同样的事情。
我不知道问题出在哪里,也许是缓存?
谢谢你的帮助!!!
iphone - 通过 NSJSONSerialization 捕获 PHP 响应
嗨,我这里有这段代码。
我想要做的是得到服务器在 NSJon 中给出的响应。我正在尝试捕捉下面的内容。我尝试使用 NSMutableArray 来获取它,但它没有用。我究竟做错了什么?