iPhone开发应用中表视图分组的实现是本文要介绍的内容,主要是以代码实现视图的分组,不多说,先来看本文详细内容,贴一张图:
1.先创建 plist文件,
2.主界面 放置一个 table view控件
3.接口代码
- @interface SectionsViewController : UIViewController <UITableViewDataSource,UITableViewDelegate> {
- NSDictionary *names;
- NSArray *keys;
- }
- @property (nonatomic, retain) NSDictionary *names;
- @property (nonatomic, retain) NSArray *keys;
- 4.实现代码
- @implementation SectionsViewController
- @synthesize names;
- @synthesize keys;
- - (void)viewDidLoad {
- NSString *path=[[NSBundle mainBundle] pathForResource:@"sortednames"
- ofType:@"plist"]; //获取属性列表的路径,赋给path
- NSDictionary *dict=[[NSDictionary alloc]
- initWithContentsOfFile:path]; //将 路径path下的数据表 初始化字典dict
- self.names = dict; //字典dict 赋给names
- //因为 names 有 retain 属性。 当给names赋值时 ,dict会自动retain(增一),此时dict的retain count=2;
- [dict release];
- //for (int i=0; i<[[names allKeys] count]; i++) {
- // NSLog(@"%@\n",[[names allKeys] objectAtIndex:i]);
- // }
- //
- NSArray *array=[[names allKeys] sortedArrayUsingSelector:
- @selector(compare:)]; //给所有 keys 值按字母顺序排序
- //for (int i=0; i<[array count]; i++) {
- // NSLog(@"%@\n",[array objectAtIndex:i]);
- // }
- self.keys = array; //将 array对象赋给 keys
- }
- - (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
- // Release any cached data, images, etc that aren't in use.
- }
- - (void)viewDidUnload {
- // Release any retained subviews of the main view.
- // e.g. self.myOutlet = nil;
- self.names = nil;
- self.keys = nil;
- }
- - (void)dealloc {
- [names release];
- [keys release];
- [super dealloc];
- }
- #pragma mark -
- #pragma mark Table View Data Source Methods
- // 返回有多少个分区
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- {
- return [keys count]; //获取分区的数量
- }
- //返回 每个分区 有多少行
- - (NSInteger)tableView:(UITableView *)tableView
- numberOfRowsInSection:(NSInteger)section
- {
- NSString *key = [keys objectAtIndex:section]; //section为其中一个分区,获取section的索引
- NSArray *nameSection = [names objectForKey:key]; //根据索引获取分区里面的所有数据
- return [nameSection count]; //返回分区里的行的数量
- }
- //返回 当前需要显示的cell, 可能是 为了节省内存
- - (UITableViewCell *)tableView:(UITableView *)tableView
- cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- //NSLog(@"tianshi\n");
- NSUInteger section = [indexPath section];//返回第几分区
- NSUInteger row = [indexPath row];//获取第几分区的第几行
- NSString *key = [keys objectAtIndex:section]; //返回 分区的索引key
- NSArray *nameSection = [names objectForKey:key];//返回 根据key获得:当前分区的所有内容,
- static NSString *SectionsTableIdentifier = @"SectionsTableIdentifier";
- //判断cell是否存在,如果没有,则新建一个
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
- SectionsTableIdentifier ];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
- reuseIdentifier: SectionsTableIdentifier ] autorelease];
- }
- //给cell赋值
- cell.textLabel.text = [nameSection objectAtIndex:row];
- return cell;
- }
- //为每一个分区指定一个名称,现在的名称为key的值
- - (NSString *)tableView:(UITableView *)tableView
- titleForHeaderInSection:(NSInteger)section
- {
- NSString *key = [keys objectAtIndex:section];
- return key;
- }
- //添加索引的值,为右侧的A----E
- - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
- {
- return keys;
- }
小结:详解iPhone开发应用之表视图分组实现代码的内容介绍完了,希望本文对你有所帮助!