`
01jiangwei01
  • 浏览: 547047 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

IOS 课程 UITable 学习(二)

    博客分类:
  • IOS
 
阅读更多

按照UITable学习一中,继续往下开发。使用的资料在UITable学习一中。

具体代码如下:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@property(retain) NSDictionary * names;
@property (retain) NSArray * keys;
@end

 

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    //文件路径
    NSString *path = [[NSBundle mainBundle]pathForResource:@"sortednames" ofType:@"plist"];
    
    NSDictionary *dict = [[NSDictionary alloc]initWithContentsOfFile:path];
    self.names = dict;
    [dict release];
    
    //获得字典关键字数组,然后排序,其中compare方法是字典中的key的compare方法
    NSArray *array  = [[self.names  allKeys]sortedArrayUsingSelector:@selector(compare:)];
    self.keys = array;    
    
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
//-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
//    return TRUE;
//}
//设置多少个分区
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    //按照关键字分区,关键字个数也是分区个数
    return [self.keys count];
}

//每种分区有多少数据
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    //根据分区序号,找到关键字
    NSString *key = [self.keys objectAtIndex:section];
    //在字典中找到所有的关键字为key的名字,放到一个数组中
    NSArray *nameSection = [self.names objectForKey:key];
    //数组中元素的个数
    return [nameSection count];

}
//设置每行的数据
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *idt = @"sectionTableIndentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:idt];
    if(cell == nil){
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:idt];
    }
    
    NSUInteger section = [indexPath section];
    NSUInteger row = [indexPath row];
    NSString *key = [self.keys objectAtIndex:section];
    NSArray *nameSection = [self.names objectForKey:key];
    
    cell.textLabel.text = [nameSection objectAtIndex:row];
    return cell;

}
//返回每个分区的标题
-(NSString*)tableView:(UITableView*) tableView titleForHeaderInSection:(NSInteger)section{
    NSString *key = [self.keys objectAtIndex:section];
    return key;
}
//添加索引
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
    return self.keys;
}
@end

 

分享到:
评论

相关推荐

    iOS程序开发教程(PPT+代码)

    4. **表格视图**:Title Lecture 9 Table Views专注于UITableView,它是iOS应用中最常用的组件之一,用于展示列表数据。讲座会涵盖创建表格视图、定制单元格以及处理用户交互。 5. **块和多线程**:Title Lecture ...

    斯坦福大学公开课:iOS 7应用开发 中英文字幕)1 18全

    【标题】"斯坦福大学公开课:iOS 7应用开发 中英文字幕)1 18全"涵盖了iOS应用开发的基础知识,特别强调了是针对iOS 7系统的学习资源,这表明课程内容可能包括该版本引入的新特性、设计原则以及开发工具的使用。...

    斯坦福ios7公开课全18集英文字幕

    【斯坦福ios7公开课全18集英文字幕】是一套由斯坦福大学提供的iOS开发课程,涵盖了iOS 7应用程序的开发技术。本课程旨在帮助开发者深入理解如何为iPhone和iPad构建高质量的应用程序,尤其针对iOS 7的新特性和最佳...

    (毕业设计)基于android的课程表开发的设计与实现.pdf

    2. Showtable模块:展示一周内所有课程,用户可以计划和安排学习时间。 3. WeekDay模块:作为课程表的管理界面,用户可以在此添加、删除或调整课程。 4. Edit模块:提供编辑功能,允许用户对已有课程进行修改,或者...

    ReactNative-classtable:reactnative实现移动端课表

    在“ReactNative-classtable”项目中,开发者利用React Native技术来实现了移动端的课表功能,这主要涉及到以下几个关键知识点: 1. **React Native基础知识**:React Native基于React.js,它将React的组件化思想...

    Learn-SwiftUI:了解Packt发行的SwiftUI

    7. **表视图(Table Views)**:SwiftUI提供了List视图来创建列表和表格,支持单选或多选。 8. **表单(Forms)**:SwiftUI简化了创建用户输入表单的过程,可以方便地结合文本字段、开关、选择器等元素。 9. **...

    college-flutter

    这些文件通常包括`.dart`扩展名,例如`main.dart`是项目的启动文件,`home_page.dart`可能是应用的主页,`course_table.dart`则可能是课程表功能的实现。 Dart语言提供了丰富的库和工具,比如`http`库用于网络请求...

Global site tag (gtag.js) - Google Analytics