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

UITableView数据填充方式

时间:2014-10-29 19:03:32      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   sp   文件   数据   on   log   

1、文件有xib或者从属的stroybord:可以对其UITableView中TableView(content)和TableViewCell(style,image,identifier,accessory)设置,改变其属性,查看其显示的状态。

2、封装成Sample.plist的格式:

   NSString *path = [[NSBundle mainBundle]pathForResource:@"SampleData" ofType:@"plist"];    

    NSArray *items = [[[NSDictionary alloc]initWithContentsOfFile:path] objectForKey:@"Data"];      

    for (NSDictionary *dict in items) {        

        BasicItem *item = [[BasicItem alloc]init];

        item.image = [UIImage imageNamed:[dict objectForKey:@"Image"]];

        item.text = [dict objectForKey:@"Place"];

        item.detailText = [dict objectForKey:@"Country"];

        [self.items addObject:item];

    }

3、可以结合NSDictionary和NSArray来进行:

 NSArray *object = [[NSArray alloc] initWithObjects:@"red",@"green",@"white",@"black",nil];    

    NSArray *key = [[NSArray alloc]initWithObjects:@"one",@"two",@"three",@"four", nil];    

    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:object,@"image", key,@"title", nil ];     

    for (id key in dict) {

        NSLog(@"key : %@, value : %@",key,[dict objectForKey:key]);

    }

UITableView数据填充方式

标签:style   io   ar   for   sp   文件   数据   on   log   

原文地址:http://www.cnblogs.com/haweizi/p/4059970.html

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