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

#import "ViewController.h"

@interface ViewController ()

@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 () // 

@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);
}

你可能感兴趣的:(知识点总结19:Tableview重要属性总结)