知识点总结19:Tableview重要属性总结

#import "ViewController.h"

@interface ViewController ()<UITableViewDelegate, UITableViewDataSource>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // tableView和tableViewController创建时可以指定样式,默认是plain样式,我们也可以根据需要创建Group样式(中间有间隔)
//    UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) style:UITableViewStylePlain];
    
    // tableView一共三大部分,表头,表尾,内容,而内容又包括各组cell,各组cell都有组头部和组尾部
    // tableView和tableViewCell都有样式,前者有2种,后者有4种
    UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) style:UITableViewStyleGrouped];
    tableView.backgroundColor = [UIColor purpleColor];
    tableView.delegate = self;
    tableView.dataSource = self;
    
    
    // 设置属性的代理方法优先于属性方法
    // 设置tableView的所有cell的高(代理方法可以指定某些cell或者某组特定高度)
//    tableView.rowHeight = 200;
    
    // 设置整个tableview的表头和表尾的view(没有代理方法,因为表头表尾部就只有各一个,高度由frame决定)
    //    tableView.tableHeaderView
    //    tableview.tableFooterView
    
//    UIView * view = [[UIView alloc] init];
//    view.backgroundColor = [UIColor redColor];
//    view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 50);
//    tableView.tableHeaderView = view;
    
    // 设置tableview各组的组头部和组尾部的高(代理方法可以指定某些组的头尾部的高度,如果设置的高度没有效果,就用代理方法,代理方法比较准确)
//    tableView.sectionHeaderHeight
//    tableView.sectionFooterHeight
    
    
    // group样式下的tableView顶部如果没有设置tableView表头或者组表头,则会下移35,即{{0, 35}, {width, height}},如果设置了组表头则不会,这是默认设置
//    tableView.contentInset = UIEdgeInsetsMake(-35, 0, 0, 0);
    
    [self.view addSubview:tableView];
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 3;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    // 1.确定重用标识
    static NSString *ID = @"cell";
    // 2.从缓存池中取(没有注册)
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    // 3.如果空就手动创建,指定样式和重用标识
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"%ld", indexPath.section];
    
    return cell;
}

// tableView各组的组头标题
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

    return @"我是tableView组头标题--组头部";
}
// tableView各组的尾部标题
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    return @"我是tableView组尾标题---组尾部";
}

//// tableView各组的尾部视图 >(优先于)tableView各组的尾部标题
//- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
//    UIView * view = [[UIView alloc] init];
//    view.backgroundColor = [UIColor redColor];
//    view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 5);
//    return view;
//}
// tableView各组的头部视图 >(优先于)tableView各组的头部标题
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView * view = [[UIView alloc] init];
    view.backgroundColor = [UIColor yellowColor];
    //  这里设置frame并不能控制其大小和位置
//    view.frame = CGRectMake(0, 10, 20, 100);
    return view;
}

// 给定预设高度
//- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{
//    return 5;
//}

// 对viewForFooterInSection效果显著,但对titleForFooterInSection并不感冒(位置会偏移),所以推荐头部尾部都用UIview来设置
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    // 判断某一组的高度特殊设置
    if (section == 1) {
        return 50;
    }
    
    return 10;
}


// 对viewForHeaderInSection效果显著,但对titleForHeaderInSection并不感冒,所以推荐头部尾部都用UIview来设置
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
        // 判断某一组的高度特殊设置
        // 第0组不显示组部视图
        if (section == 0) {
            return 20;
        }
    
        if (section == 1) {
            return 20;
        }
    
        return 0;

}


// 给cell自定义高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    // 判断某一组的高度特殊设置
    if (indexPath.section == 1) {
        return 50;
    }
    
    return 20;
}


// 研究group样式下的tableView顶部下移35,即{{0, 35}, {width, height}}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    // 通过观察小面包可知,tableView里面有个wrappedView,里面放着所有的cell
    NSLog(@"点中cell的frame----%@", NSStringFromCGRect(cell.frame));
}
@end

需要特别注意的是

#import "ZGKMeViewController.h"
#import "ZGKSettingViewController.h"
#import "ZGKBarButtonItemManager.h"
static NSString * const ID = @"cell";
@interface ZGKMeViewController () // <UITableViewDelegate, UITableViewDataSource>

@end

@implementation ZGKMeViewController

// 重写init方法,将Group样式封装起来
/*注意点一:*/
- (instancetype)init{
    // 因为是封装起来,所以不是调用super的方法
    return [self initWithStyle:UITableViewStyleGrouped];
}

- (void)viewDidLoad {
    [super viewDidLoad];

    /*注意点二:*/
    // 不用设置tableView的代理,也不用遵守协议,因为本来就是tableView控制器
    // 用代理方法设置高度优先于用属性self.tableView.sectionHeaderHeight,但是代理方法设置高度为0会出现异常,如果统一设置高度为0的话,不能采用代理方法,代理方法只能设置不为0的情况
    // 当代理方法设置的高度为0的时候,就会执行sectionHeaderHeight或者sectionFooterHeight的值,当代理方法的值不为0时,则优先使用代理,代理为0时则会采用sectionHeaderHeight或者sectionFooterHeight的值
    // 当sectionHeaderHeight或者sectionFooterHeight有一个为0时,tableView就会变成默认样式,第一个cell的frame为{{0, 35}, {320, 44}}
    self.tableView.sectionHeaderHeight = 0;
    self.tableView.sectionFooterHeight = 10;

    /*注意点三:*/
    // Grouped样式,没有设置表头或者组头的高度,则会默认下移35,不过可以通过调整contenInset来调整间距
    self.tableView.contentInset = UIEdgeInsetsMake(-25, 0, 0, 0);
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 1;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 3;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    // 1.确定cell的标识(写在上面全局变量,不用重复创建)
    
    // 2.从缓存池中取cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (!cell) {
        // 创建cell,并指定样式和添加重用标识
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"%ld", indexPath.section];
    
    return cell;
}

// 设置高度为0就会失效,所以不能设置组高度为0
// 用代理方法设置高度优先于用属性self.tableView.sectionHeaderHeight,但是代理方法设置高度为0会出现异常,如果统一设置高度为0的话,还是不要采用代理方法
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
//    if (section == 1) {
//        return 1;
//    }
    return 0;
    
}


// 用代理方法设置高度优先于用属性self.tableView.sectionHeaderHeight,但是代理方法设置高度为0会出现异常,如果统一设置高度为0的话,还是不要采用代理方法
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 0;
}



- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView *view = [[UIView alloc] init];
    view.backgroundColor= [UIColor yellowColor];
    return view;
    
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    UIView *view = [[UIView alloc] init];
    view.backgroundColor= [UIColor redColor];
    return view;
}



- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    // 拿到选中的cell
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    
    NSLog(@"选中cell的frame:%@------header:%f -----footer:%f", NSStringFromCGRect(cell.frame), tableView.sectionHeaderHeight, tableView.sectionFooterHeight);
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,616评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,020评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,078评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,040评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,154评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,265评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,298评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,072评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,491评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,795评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,970评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,654评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,272评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,985评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,815评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,852评论 2 351

推荐阅读更多精彩内容