SBJson

举报
清雨小竹 发表于 2022/09/25 01:33:32 2022/09/25
【摘要】 如何使用SBJson   Json是一种类似XML的数据传输方式。详细介绍请看:介绍JSON SBJson是与Objective-C结合比较好的库。 使用SBJson的文件需包含JSON.h头文件。 id jsonObject = [jsonString JSONValue];...
如何使用SBJson
 

Json是一种类似XML的数据传输方式。详细介绍请看:介绍JSON
SBJson是与Objective-C结合比较好的库。
使用SBJson的文件需包含JSON.h头文件。
id jsonObject = [jsonString JSONValue];
此句创建json对象,JSONValue自动将json字符内容初始化为json对象。当然先需要将json文件内容读取为字符串。jsonObject可能是NSDictionary或NSArray。具体根据json内容。
json内容被SBJson转换为Objective-C的类型的方式如下:
Null -> NSNull
String -> NSMutableString
Array -> NSMutableArray
Object -> NSMutableDictionary
Boolean -> NSNumber
Number -> NSDecimalNumber

Iphone利用JSON传递数据,展示在Table界面中

下面是一个最简单的例子。效果如图:

上面用到了json传递的数据,有关json部分,iphone sdk虽然没有支持,但是第三方已经写好了。
json 参考:http://code.google.com/p/json-framework/
 
下面是具体的代码实现:
数据加载:

      
  1. #import “MyDataSource.h”
  2. #import “JSON.h”
  3. @implementation MyDataSource
  4. + (NSDictionary *)fetchLibraryInformation
  5. {
  6. NSString *urlString = [NSString stringWithFormat:@"http://wangjun.easymorse.com/wp-content/video/hello.jison"];
  7. NSURL *url = [NSURL URLWithString:urlString];
  8. NSLog(@”fetching library data”);
  9. return [self fetchJSONValueForURL:url];
  10. }
  11. + (id)fetchJSONValueForURL:(NSURL *)url
  12. {
  13. NSString *jsonString = [[NSString alloc] initWithContentsOfURL:url
  14. encoding:NSUTF8StringEncoding error:nil];
  15. id jsonValue = [jsonString JSONValue];
  16. [jsonString release];
  17. return jsonValue;
  18. }
  19. @end
  20. table数据展示:
  21. #import “JSONTableTestViewController.h”
  22. #import “MyDataSource.h”
  23. @implementation JSONTableTestViewController
  24. @synthesize myData;
  25. - (void)viewDidLoad {
  26. NSLog(@”加载数据“);
  27. myData = [[MyDataSource fetchLibraryInformation] retain];
  28. }
  29. - (void)didReceiveMemoryWarning {
  30. // Releases the view if it doesn’t have a superview.
  31. [super didReceiveMemoryWarning];
  32. // Release any cached data, images, etc that aren’t in use.
  33. }
  34. - (void)viewDidUnload {
  35. // Release any retained subviews of the main view.
  36. // e.g. self.myOutlet = nil;
  37. }
  38. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  39. return [myData count]; //有多少个section,也就是“几家”
  40. }
  41. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  42. return [[myData valueForKey:[[myData allKeys] objectAtIndex:section]] count];
  43. //这里我们需要告诉UITableViewController每个section里面有几个,也就是“一家里面有几口人”
  44. }
  45. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  46. static NSString *CellIdentifier = @”Cell”;
  47. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  48. if (cell == nil) {
  49. cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
  50. reuseIdentifier:CellIdentifier] autorelease];
  51. }
  52. //上面的东西都是重复白给的,平时没事不用想为什么,照抄就可以了
  53. cell.textLabel.text = [[myData valueForKey:[[myData allKeys] objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
  54. //这句看上去复杂,但是其实不过是在特定section里面找到对应的array,
  55. //然后在array中找到indexPath.row所在的内容
  56. return cell;
  57. }
  58. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
  59. {
  60. return [[myData allKeys] objectAtIndex:section];
  61. //这里设置对应section的名字,很简单allKey返回所有的键值为一个array,也就是“张家”,“李家”
  62. //然后用objectAtIndex: 来找出究竟是哪一个就可以了!
  63. }
  64. - (void)dealloc {
  65. [myData release];
  66. [super dealloc];
  67. }
  68. @end


文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。

原文链接:zzzili.blog.csdn.net/article/details/8566573

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。