Iphone开发(十一)从plist文件读取列表数据并添加索引

holydancer原创,如需转载,请在显要位置注明:

转自holydancer的CSDN专栏,原文地址:http://blog.csdn.net/holydancer/article/details/7433430


我们知道在IOS开发中,系统级的还是我们自己的一些配置文件一般是用plist文件来保存的,有的时候我们的数据不需要在代码中创建,而是以plist格式保存,这时我们就需要在代码中将其取出,当然前提肯定是文件在项目资源里。上次我们实现了简单的列表,今天我们在上次的基础上扩展一下,上次我们列表的数据源是在viewDidLoad中自己随手构建的,今天呢我们将保存在一个plist文件中的量比较多的数据添加到列表中。

首先我们要有一个充满了数据的plist文件,我们如果自己new的话按下图:


现在我已经构造好了,看截图:


命名为dota.plist,内容是一个dictionary键值对,键有六个,分别是什么什么型英雄,如上所示,分别对应了六个数组,数组里保存的是多个字符串。好了,现在我们要在viewDidLoad方法里将内容读取出来。所以我们要在声明时先声明一个NSDictionary类型用来保存该文件,再声明一个NSArray类型来保存六个Key。

viewController.h:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic ,strong)NSDictionary *myDotaDictionary;
@property (nonatomic ,strong)NSArray *myKeys;

@end

然后在viewDidLoad方法中将文件读取出来:

-(void)viewDidLoad
{
    [super viewDidLoad];
    NSString *path = [[NSBundle mainBundle] pathForResource:@"dota" ofType:@"plist"];//找到该plist的路径
   // NSLog(@"%@",path);
    myDotaDictionary = [[NSDictionary alloc]initWithContentsOfFile:path];
    
   
    self.myKeys=[[NSArray alloc]initWithArray:[myDotaDictionary allKeys]];
    
    
}

这时就会显示一个列表了,列表内容是我们自制的那个plist文件内容。我们可以在xib文件中设为分组或者设为普通格式,不管是什么模式,我们都可以添加索引用来方便的定位列表,添加索引的方法是:

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
该方法返回一个数组,这个数组中的每一个元素依次按顺序对应列表中的每一个section,所以如果要显示索引的话,我们需要定义该方法并给出一个返回值,我们暂且返回我们的keys数组吧,这样每个索引名就和section标题是一样的了。注意返回的数组要和分区数一样,来实现索引和分区一一对应。下面是整个代码:

viewController.m:

#import "ViewController.h"


@implementation ViewController
@synthesize myDotaDictionary;
@synthesize myKeys;
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{   
    //该方法返回有多个少分区,也就是多少组(如果分组模式的话)
    return [myKeys count];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    //该方法返回每一个分区有多少行。该方法会遍历很多次,每次的参数section都不同
    NSString *tmp =[myKeys objectAtIndex:section];//根据section取出该组的标题
    //也就是键值对中的key,下一步用这个key取出对应的数组,也就是该区内容。
    NSArray *tmpArray=[myDotaDictionary objectForKey:tmp];
    return [tmpArray count];
    
        
    
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    //返回一个字符串,用作给定分区的标题
    return [myKeys objectAtIndex:section];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    //这个就不是数据源中的方法了。
    //该方法返回指定分区的每一行
    NSUInteger sectionNum = [indexPath section];
    NSUInteger row = [indexPath row];
    
    NSString *title = [myKeys objectAtIndex:sectionNum];
    NSArray *contents = [myDotaDictionary objectForKey:title];
    
    static NSString *identifier = @"sss";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (cell==nil) {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
    }
    cell.textLabel.text= [contents objectAtIndex:row];
    
    return cell;
}


-(void)viewDidLoad
{
    [super viewDidLoad];
    NSString *path = [[NSBundle mainBundle] pathForResource:@"dota" ofType:@"plist"];//找到该plist的路径
   // NSLog(@"%@",path);
    myDotaDictionary = [[NSDictionary alloc]initWithContentsOfFile:path];
    
   
    self.myKeys=[[NSArray alloc]initWithArray:[myDotaDictionary allKeys]];
    //上一步是将字典中的key取出来作为每一组的标题用,取出来后来了一个排序。

    
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    //该方法响应列表中行的点击事件
   
    NSArray *arrayInSection=[myDotaDictionary objectForKey: [myKeys objectAtIndex:indexPath.section]];
    NSString *heroSelected=[arrayInSection objectAtIndex:indexPath.row];
    
    UIAlertView *myAlertView;
    myAlertView = [[UIAlertView alloc]initWithTitle:@"dota群英传" message:heroSelected delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil];
    [myAlertView show];
}
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    return myKeys;
    //Keys中的每一个值对应一个分区,也可以自定义。
    //    NSArray *tmpIndexArray = [[NSArray alloc]initWithObjects:@"1",@"2",@"3",@"4",@"5",@"6",nil];
    //    return tmpIndexArray;
}
- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
   
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end

我们可以在xib文件中设置列表的格式为分组或者正常格式来显示不同的效果:



关键字:IOS ,Iphone 开发 ,Iphone SDK ,tableView ,索引 ,读取plist文件 

  • 7
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值