表视图的分组分区和索引分区

简介:

        本次实现的是表视图的分区和索引,代码和前面都差不多,主要还是代理方法的设计实现;

1.新建工程名为Partitation , File->New->Project ->single View Application -> next


2.添加协议和声明变量

#import <UIKit/UIKit.h>  @interface PartitionViewController : UIViewController           <UITableViewDelegate,UITableViewDataSource> @property (strong,nonatomic) UITableView *partitationTableView; @property (strong,nonatomic) UITableViewCell *partitionTableViewCell; @property (strong,nonatomic) NSDictionary *dicData; @property (strong,nonatomic) NSArray *arrayData;  @end


3.添加plist文件,再到ViewDidLoad中初始化视图

plist文件的添加


- (void)viewDidLoad {     [super viewDidLoad];          UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];          [self.view addSubview:navBar];  	// Do any additional setup after loading the view, typically from a nib.          self.partitationTableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped];          self.partitationTableView.delegate=self;     self.partitationTableView.dataSource = self;     [self.view addSubview:self.partitationTableView];          [self.view addSubview:self.partitationTableView];      //    读取plist文件     NSBundle *bundle = [NSBundle mainBundle];     NSURL *plistURL = [bundle URLForResource:@"partitionInfo" withExtension:@"plist"];          NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL];     self.dicData = dictionary;      //    读取字典中的key储存数组中     NSArray *array = [self.dicData allKeys];     self.arrayData = array;      }

4.实现委托方法

前面我们做的都是return 1,表示返回的是一个分区,现在是从数组中读取字典中的plist文件有几个分区

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {     return [self.arrayData count]; }


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { //    从数组中读取分区的对应的key     NSString *stringDataKey = [self.arrayData objectAtIndex:section]; //    根据读取的key从该分区字典中读取数据元素     NSArray *arraySection = [self.dicData objectForKey:stringDataKey]; //    返回的是特定分区的行数     return [arraySection count]; }
根据索引路径获取分区行,需要使用哪个值在从字典中取出来
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {     NSInteger section = [indexPath section];     NSInteger row = [indexPath row];          NSString *key = [self.arrayData objectAtIndex:section];     NSArray *arraySection = [self.dicData objectForKey:key];          static NSString *partitation = @"partitation";     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:partitation];          if (cell==nil) {         cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:partitation];     }          cell.textLabel.text = [arraySection objectAtIndex:row];     return cell; }


给每个分区指定可选标题值

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {     NSString *key = [self.arrayData objectAtIndex:section];     return key; }

运行下效果

  


5.添加索引,当我们查询的东西有几万条向下拖动表视图很显然比较麻烦,添加索引之后可以直接跳到所选的分区

-(NSArray*)sectionIndexTitlesForTableView:(UITableView *)tableView {     return self.arrayData; }
运行效果

  




附上源代码:http://download.csdn.net/detail/duxinfeng2010/4419302







     本文转自新风作浪 51CTO博客,原文链接:http://blog.51cto.com/duxinfeng/1208742,如需转载请自行联系原作者

相关文章
|
存储 NoSQL Java
数据系统分区设计 - 分区与二级索引
目前的分区方案都依赖KV数据模型。KV模型简单,都是通过K访问记录,自然可根据K确定分区,并将读写请求路由到负责该K的分区。
98 0
|
SQL 索引 数据库
|
索引 SQL
对已存在的表进行分区时遇到的坑
在网上能够找到很多关于表分区的资料,可是大部分都是在介绍如何给一个新表创建表分区,而对已存在的表如何做分区的文章相对比较少,因此一些坑没有被“挖掘”出来或者“曝光率”比较低。
1553 0
|
测试技术 索引
非分区表是否可以创建分区索引?
有同事问一个问题, 一张非分区表,是否可以创建分区索引? 答案是可以,但分区索引的类型有限制。 MOS这篇文章给出了答案,以及一些例子,What Is The Global Partitioned Index On Non Partitioned Table? (文档 ID 1612359.1)。
1149 0
|
SQL 存储 索引
|
存储 索引 SQL