import "AppDelegate.h"
import "RootViewController.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
-
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];RootViewController *rootVC = [[RootViewController alloc]init];
UINavigationController *navC = [[UINavigationController alloc]initWithRootViewController:rootVC];
[self.window setRootViewController:navC];return YES;
}
import "RootViewController.h"
@interface RootViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic ,retain)NSArray *dataArray; // 数据源,用来给cell赋值
@property (nonatomic ,retain)NSDictionary *dict;
@property (nonatomic ,retain)NSMutableArray *titleArray; // 用来盛放头标题
@end
@implementation RootViewController
-
(void)viewDidLoad {
[super viewDidLoad];
// 初始化数据源并且添加数据
self.dataArray = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J", nil];NSArray *arr = [NSArray arrayWithObjects:@"G",@"E",@"F",@"G",@"H", nil];
self.dict = [NSDictionary dictionaryWithObjectsAndKeys:_dataArray,@"0",arr,@"1", nil];// 添加头标题
self.titleArray = [NSMutableArray array];
for (NSArray *arrayItem in self.dict.allValues) {
// 从数组中取出第一个元素
// 判断字典中的元素是否存在,如果存在它的类型是否为数组 且存在数组元素(不为空)
if (arrayItem && [arrayItem isKindOfClass:[NSArray class]] && arrayItem.count) {
NSString *nameStr = [arrayItem objectAtIndex:0];
// 判断数组中的元素是否存在,如果存在类型是否为字符串,如果为字符串类型,判断字符串长度是否为零
if (nameStr && [nameStr isKindOfClass:[NSString class]] && nameStr.length) {
// 截取字符串的首个字符
NSString *resultStr = [nameStr substringToIndex:1];
// 将首个字符串添加进数组
[self.titleArray addObject:resultStr];
}
}
}self.navigationItem.title = @"RootVC";
// 创建表视图
// 设置分割线样式 style:设置单元格样式,有两种样式:plain(平铺) group ,默认样式为:plain
UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];
// 设置分割线样式
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
// 设置分割线颜色
tableView.separatorColor = [UIColor orangeColor];
// 如果我们每个的cell的高度是统一的,可以直接用属性来设置
tableView.rowHeight = 60;tableView.dataSource = self;
tableView.delegate = self;
[self.view addSubview:tableView];
}
pragma mark --- 表视图的代理方法
// 共有多少个分区 此代理方法为可选的,如果不实现该代理方法,默认整个表视图只有一个分区
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
// return 1;
// 返回字典中元素的个数,作为分区的个数
return self.dict.count;
}
// 每个分区下返回的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
// return 10;
// 这里单元格个数一般不写死,将数据源的个数作为返回值,根据数据的数量创建单元格的数量
// return self.dataArray.count;// 返回所有数据的个数
// 根据当前所在的分区,取得字典中对应的键
// NSString *keyString = self.dict.allKeys[section];
// // 根据键取出对应的值,由于字典的值为数组,所以可以有count属性
// return [self.dict[keyString] count];
// 根据所在分区取出字典的值
NSArray *array = [self.dict.allValues objectAtIndex:section];
return array.count;
}
// 定义单元格 IndexPath:单元格当前所在位置
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *identifier = @"cell";
// identifier: 因为一个表视图中可能存在多种样式的单元格,我们把相同样式的单元格放到同一个集合里面,为这个集合加标示符,当我们需要用到某种样式的单元格的时候,根据不同的标示符,从不同的集合中找寻单元格
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];// 在某个标示符下,可以再度被移出重新使用的cell
// � 如果从集合中为找到单元格,也就是集合中好没有单元格,也就是还没有单元格出屏幕,那么我们需要创建单元格
if (!cell) {
// 创建cell的时候需要标示符是因为,当该cell出屏幕的时候将单元格按照不同类型放入和集中
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
// 设置cell的Style,不涉及到数据的重新赋值,我们可以在初始化cell的时候给它设置好
// 设置辅助视图
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
// 设置选中后的效果
cell.selectionStyle = UITableViewCellSelectionStyleDefault;
}
// 创建单元格
// UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
// 为cell上添加文字 indexPath.row : 单元格所在的行数
// cell.textLabel.text = [NSString stringWithFormat:@"我是第%ld个单元格,我在%ld分区",(long)indexPath.row+1,indexPath.section];
// indexPath.row是得到当前单元格所在的那一行,起始位置为0,数组下标的起始位置也是零,所以我们可以根据单元格所在的行数来从数组中取值显示
// cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];
// NSString *keyString = self.dict.allKeys[indexPath.section];
// NSArray *array = self.dict[keyString];
NSArray *valueArray = [self.dict.allValues objectAtIndex:indexPath.section];
cell.textLabel.text = [valueArray objectAtIndex:indexPath.row];
// 副标题 这种样式只能在非default的样式下使用,只为显示位置有所改变
cell.detailTextLabel.text = @"副标题,颜色浅色";
// 不管任何Style样式下,都给可以给cell添加图片
cell.imageView.image = [UIImage imageNamed:@"11"];
return cell;
}
// 为每个分区头添加标题的代理方法
-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
// 为每个分区添加头标题
// NSArray *titArray = [NSArray arrayWithObjects:@"1",@"2", nil];
// return [titArray objectAtIndex:section];
// NSString *string = [[self.dict.allValues objectAtIndex:section] objectAtIndex:0];
// NSString *subStr = [string substringToIndex:1];
// return subStr;
int index = (int)(self.titleArray.count > section ? section : -1);
if (index != -1) {
return [self.titleArray objectAtIndex:section];
}else
return @"数组元素不够了";
}
//� 点击cell所响应的代理方法
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// 根据indexPath得到当前所点击的cell
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSLog(@"------%ld",(long)indexPath.row);
}
// 通过代理设置cell的高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
// 一般cell都需要根据内容来自适应高度,高度的变化就在此处根据indexPath来更改(每个cell的高度不统一)
// 设置第一个cell高度200,其他都是100
if (indexPath.row == 0) {
return 100;
}
return 60;
}
// 添加右侧索引条的代理方法
-(NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return [NSArray arrayWithObjects:@"a",@"b",@"c",@"d", nil];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end