码迷,mamicode.com
首页 > 其他好文 > 详细

ViewController UITableView

时间:2015-02-25 09:08:20      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:uitableview   uitableviewcell   ios   ios开发   

//

//  ViewController.m

//  CarDemo

//

//  Created by GuoYule on 15/1/20.

//  Copyright (c) 2015 GuoYule. All rights reserved.

//


#import "ViewController.h"

#import "CarGroup.h"

#import "GYLcar.h"

@interface ViewController ()<UITableViewDataSource>

/**

 *  车品牌数据

 */

@property(nonatomic,strong) NSArray * carGroups;

@end


@implementation ViewController


- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

}


-(BOOL)prefersStatusBarHidden

{

    return YES;

}

-(NSArray *)carGroups


{

    if (_carGroups == nil) {

        // 初始化

        

        // 1.获得plist的全路径

        NSString *path = [[NSBundle mainBundle] pathForResource:@"cars_total.plist" ofType:nil];

        

        // 2.加载数组

        NSArray *dictArray = [NSArray arrayWithContentsOfFile:path];

        

        // 3.dictArray里面的所有字典转成模型对象,放到新的数组中

        NSMutableArray *carGroupsArray = [NSMutableArray array];

        for (NSDictionary *dict in dictArray) {

            // 3.1.创建模型对象

            CarGroup *group = [CarGroup groupWithDict:dict];

            

            // 3.2.添加模型对象到数组中

            [carGroupsArray addObject:group];

        }

        

        // 4.赋值

        _carGroups = carGroupsArray;

    }

    return _carGroups;

    

    

}

#pragma mark -数据源模型

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

    return self.carGroups.count;

    

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    CarGroup * group = self.carGroups[section];

    return group.cars.count;

}



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    //定义一个循环标识

    static NSString * ID = @"car";

    //2.从缓存池中取出可循环利用的cell

    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:ID];

    //3. 如果缓存池中没有那么就要新建一个 并且要赋予标识

    if (cell == nil)

    {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];

    }

    //4.设置数据

    CarGroup * group = self.carGroups[indexPath.section];

    GYLcar * car = group.cars[indexPath.row];

    cell.imageView.image = [UIImage imageNamed:car.icon];

    cell.textLabel.text = car.name;

    return  cell;

}

/**

 *  section组显示的头部标题


 */

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

{

    CarGroup * group = self.carGroups[section];

    return group.title;

}

/**

 *  返回回右边索引跳显示的字符串数据

 */

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{

    return [self.carGroups valueForKeyPath:@"title"]; //这是KVC可以间接取值

    //为什么不用[self.carGroups valueForKey:@"title"] 因为这个不会间接取值

    

}


@end



ViewController UITableView

标签:uitableview   uitableviewcell   ios   ios开发   

原文地址:http://blog.csdn.net/guoyule2010/article/details/43930489

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!