用json方法解析本地数据,并显示在tableView上面

效果图  图片是三张星星图片,1是全星,2是半星,3是空星

类的文件

AppDelegate.m

#import "AppDelegate.h"
#import "MainViewController.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.window.backgroundColor = [UIColor whiteColor];
    
    MainViewController *mainVC = [[MainViewController alloc] init];
    UINavigationController *naviVC = [[UINavigationController alloc] initWithRootViewController:mainVC];
    self.window.rootViewController = naviVC;
    [naviVC release];
    [mainVC release];
    [self.window makeKeyAndVisible];
    [_window release ];
    return YES;
}
- (void)dealloc
{
    [_window release];
    [super dealloc];
}
- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
@end

MainViewController.m

显示评分星星的代码可优化,可对传过来的星星数值然后进行个数的判断

#import "MainViewController.h"
#import "JSONParser.h"
#import "movie.h"
#import "TableViewCell.h"
@interface MainViewController () <UITableViewDataSource, UITableViewDelegate>
@property (nonatomic , retain)UITableView *tableView;
@property (nonatomic , copy)NSMutableArray *arraymovie;
@end
@implementation MainViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    // Do any additional setup after loading the view.
    
    //开始执行解析的JSON
    //同时进行block调用
    
    
    JSONParser *json = [[JSONParser alloc] init];
    self.arraymovie = [NSMutableArray array];
    NSMutableArray *(^passblock)(NSMutableArray *array) = ^(NSMutableArray *array){
        self.arraymovie = array;
        return array;
    };
    json.block = passblock;
    [json startJSONParse];
    [json release];
    
    
    self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 480) style:UITableViewStylePlain];
    self.tableView.dataSource = self;
    self.tableView.delegate = self;
    [self.view addSubview:self.tableView];
    [_tableView release];
    
    
    
    
    
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.arraymovie.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *str = @"aaa";
    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:str];
    if (cell == nil) {
        cell = [[[TableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:str]autorelease];
    }
    movie *mov = [self.arraymovie objectAtIndex:indexPath.row];
    cell.label1.text = mov.title;
    cell.label2.text = mov.pubdate;
    cell.label3.text = mov.original_title;
    
    
    if ([mov.stars isEqualToString:@"00"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"3.png"];
        cell.imageView2.image = [UIImage imageNamed:@"3.png"];
        cell.imageView3.image = [UIImage imageNamed:@"3.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"05"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"2.png"];
        cell.imageView2.image = [UIImage imageNamed:@"3.png"];
        cell.imageView3.image = [UIImage imageNamed:@"3.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"10"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"3.png"];
        cell.imageView3.image = [UIImage imageNamed:@"3.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"15"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"2.png"];
        cell.imageView3.image = [UIImage imageNamed:@"3.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"20"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"3.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"25"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"2.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"30"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"1.png"];
        cell.imageView4.image = [UIImage imageNamed:@"3.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"35"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"1.png"];
        cell.imageView4.image = [UIImage imageNamed:@"2.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"40"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"1.png"];
        cell.imageView4.image = [UIImage imageNamed:@"1.png"];
        cell.imageView5.image = [UIImage imageNamed:@"3.png"];
    }
    
    if ([mov.stars isEqualToString:@"45"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"1.png"];
        cell.imageView4.image = [UIImage imageNamed:@"1.png"];
        cell.imageView5.image = [UIImage imageNamed:@"2.png"];
    }
    
    if ([mov.stars isEqualToString:@"50"] ) {
        cell.imageView1.image = [UIImage imageNamed:@"1.png"];
        cell.imageView2.image = [UIImage imageNamed:@"1.png"];
        cell.imageView3.image = [UIImage imageNamed:@"1.png"];
        cell.imageView4.image = [UIImage imageNamed:@"1.png"];
        cell.imageView5.image = [UIImage imageNamed:@"1.png"];
    }
    
    
    return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 60;
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    
    
    
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/
@end

JSONParser.h

#import <Foundation/Foundation.h>
@interface JSONParser : NSObject
@property (nonatomic , copy)NSMutableArray *(^block)(NSMutableArray *array);
@property (nonatomic , retain)NSMutableArray *array1;
- (void)startJSONParse;
@end

JSONParser.m

#import "JSONParser.h"
#import "movie.h"
@implementation JSONParser
- (void)startJSONParse
{
    //系统提供JSON解析方法
    
    //1.获取文件路径
    NSString *strPath = [[NSBundle mainBundle] pathForResource:@"DoubanMovie" ofType:@"txt"];
    //2.通过路径把文件转换成NDSata类型
    NSData *data = [NSData dataWithContentsOfFile:strPath];
    
    NSError *error = nil;
    NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
    
    NSMutableArray *array = [[NSMutableArray alloc] init];
    array = [dictionary objectForKey:@"entries"];
    
    
//    NSLog(@"%@", dictionary);
    self.array1 = [NSMutableArray array];
    
    for (NSDictionary *dic in array) {
        //新建一个movie的对象
        movie *mov = [[movie alloc] init];
        mov.title = [dic objectForKey:@"title"];
        mov.pubdate = [dic objectForKey:@"pubdate"];
        mov.original_title = [dic objectForKey:@"original_title"];
        mov.stars = [dic objectForKey:@"stars"];
        NSLog(@"%@",mov.stars);
        //把要用的对象都添加到array1中
        [self.array1 addObject:mov];
//        NSLog(@"%@",self.array1);
        [mov release];
    }
    //把array1传到前面使用
    self.block(self.array1);
        
}
@end

TableViewCell.m

#import "TableViewCell.h"
@implementation TableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
        
        self.label1 = [[UILabel alloc] init];
        self.label1.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.label1];
        [_label1 release];
        
        self.label2 = [[UILabel alloc] init];
        self.label2.backgroundColor = [UIColor cyanColor];
        [self.contentView addSubview:self.label2];
        [_label2 release];
        
        self.label3 =[[UILabel alloc] init];
        self.label2.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.label3];
        [_label3 release];
        
        self.imageView1 = [[UIImageView alloc] init];
        self.imageView1.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.imageView1];
        [_imageView1 release];
        
        self.imageView2 = [[UIImageView alloc] init];
        self.imageView2.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.imageView2];
        [_imageView2 release];
        
        self.imageView3 = [[UIImageView alloc] init];
        self.imageView3.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.imageView3];
        [_imageView3 release];
        
        self.imageView4 = [[UIImageView alloc] init];
        self.imageView4.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.imageView4];
        [_imageView4 release];
        
        self.imageView5 = [[UIImageView alloc] init];
        self.imageView5.backgroundColor = [UIColor whiteColor];
        [self.contentView addSubview:self.imageView5];
        [_imageView5 release];
        
       
        
        
    }
    return self;
}
- (void)layoutSubviews
{
    self.label1.frame = CGRectMake(10, 0, 150, 30);
    self.label2.frame = CGRectMake(10, 30, 120, 30);
    self.label3.frame = CGRectMake(180, 0, 180, 30);
    self.imageView1.frame = CGRectMake(180, 30, 25, 25);
    self.imageView2.frame = CGRectMake(205, 30, 25, 25);
    self.imageView3.frame = CGRectMake(230, 30, 25, 25);
    self.imageView4.frame = CGRectMake(255, 30, 25, 25);
    self.imageView5.frame = CGRectMake(280, 30, 25, 25);
    
}
- (void)dealloc
{
    [_label1 release];
    [_label2 release];
    [_label3 release];
    [_imageView1 release];
    [_imageView2 release];
    [_imageView3 release];
    [_imageView4 release];
    [_imageView5 release];
    [super dealloc];
}
- (void)awakeFromNib
{
    // Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];
    // Configure the view for the selected state
}
@end

movie.h

#import <Foundation/Foundation.h>
@interface movie : NSObject
@property (nonatomic , retain)NSString *title;
@property (nonatomic , retain)NSString *pubdate;
@property (nonatomic , retain)NSString *original_title;
@property (nonatomic , copy) NSString *stars;
@end

movie.m

#import "movie.h"
@implementation movie
- (void)dealloc
{
    [_title release];
    [_pubdate release];
    [_original_title release];
    
    [super dealloc];
}
- (NSString *)description
{
    return [NSString stringWithFormat:@"title:%@ pubdate:%@ original_title:%@ stars:%@", self.title, self.pubdate, self.original_title, self.stars];
}
@end
时间: 2024-11-08 20:11:11

用json方法解析本地数据,并显示在tableView上面的相关文章

用json方法解析webqq好友列表文本

本节课主要讲解了用json方法解析webqq好友列表文本,并显示在超级列表框里.相信大家看完本节课,会对json格式文本的解析有更深层次的理解. 用json方法解析webqq好友列表文本,布布扣,bubuko.com

IOS开发之——四种方法解析Jason数据(转)

本文将介绍TouchJson. SBJson .JSONKit 和 iOS5所支持的原生的json方法,解析国家气象局API,TouchJson和SBJson需要下载他们的库 TouchJson包下载: http://download.csdn.net/detail/enuola/4523169 SBJson 包下载: http://download.csdn.net/detail/enuola/4523177 JSONKit包下载:http://download.csdn.net/detail

JS和JAVA使用JSON方法解析

JS和JAVA使用JSON方法解析 一.JS部分================== 将json字符串转换为json对象的方法.在数据传输过程中,json是以文本,即字符串的形式传递的,而JS操作的是JSON对象,所以,JSON对象和JSON字符串之间的相互转换是关键. 例如: JSON字符串: var str1 = '{ "name": "cxh", "sex": "man" }'; JSON对象: var str2 = {

extjs_02_grid(显示本地数据,显示跨域数据)

1.显示表格 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>My JSP 'index.jsp' start

【iOS开发-网络】两种常用的方法解析XML数据

解析XML数据常用的有两种方法 第一种 使用Google的GDataXMLNode解析XML数据 使用的是DOM方式解析 先把xml一口吞掉 然后一点一点的解析 第二种 使用苹果自带的NSXMLParser解析XML数据 使用的是SAX方式解析 一个标记一个标记的解析 第一种使用步骤 第一步 首先把GDataXML文件夹放入项目中 第二步 更改Bulid Setting里面的东西 更改头文件搜索路径 在Header Search Paths里面添加路径/usr/include/libxml2 在

listview刷新数据,滑到底部就会更新数据,解析本地数据,用for循环赋值

滑到低不就会有更新,不同于Xlistview,这个用法非常的简单: activity.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_h

ExtJS ComboBox同时加载远程和本地数据

ExtJS ComboBox同时加载远程和本地数据 原文:http://gblog.hbcf.net/index.php/archives/233 ComboBox比较特殊需求,将远程数据和本地数据同时加载.其实,还是先加载远程,在将本地数据塞进获取到的远程数据中去.大概的代码如下(网上得来,未验证,以备用) //首先远程读取数据 var seriesStore = new Ext.data.JsonStore({ url: '', fields: ['seriesid', 'seriesnam

vue模拟后台数据,请求本地数据的配置(旧版本dev-server.js,新版本webpack.dev.conf.js)

最近学习一个vue-cli的项目,需要与后台进行数据交互,这里使用本地json数据来模仿后台数据交互流程.然而发现build文件夹下没有dev-server.js文件了,因为新版本的vue-webpack-template 中已经去掉了dev-server.js,取而代之的是webpack.dev.conf.js文件,所以可以在webpack.dev.conf.js里配置本地访问. 对比旧版本的build文件夹,新版本的build下少了dev-server.js和dev-client.js 旧版

用安卓自带的原生方法解析从webservice获取的json数据

研究了oschina,获取的信息都是用xml的,感觉没json那么好,解析太复杂循环啥的,还有xml相对于json来说太多了,麻烦. 之前试过用geon还有fastjson但是老是报错.还是用原生自带的json方法.这里我来接受一组json数据 譬如我们想要获取一堆人员信息, [ {"username":"马晕","company":"albaba"}, {"username":"刘强西"