contentInset的深度分析

2016-07-22  本文已影响204人  提莫不胖

OC 日常笔记碎片知识

ViewController添加3个ScrollView,每个ScrollView添加开一个swich.

分析.gif

1.通过观察发现并没有修改内边距.

分析.gif

2.橙色ScrollView内边距发生变化, 默认首个控件会调整内边距.

分析.gif

首个控件不是ScrollView,系统不会调整内边距.

#import "ViewController.h"

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 不要自动调整scrollView的内边距
    //方法一
//    self.automaticallyAdjustsScrollViewInsets = NO;
    //方法二
    self.scrollView.contentInset = UIEdgeInsetsMake(-64, 0, 0, 0);
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    NSLog(@"%@", NSStringFromUIEdgeInsets(self.scrollView.contentInset));
}

@end
修改内边距.gif

为了不被导航控制器挡住可视控件.

研究TableView的ContentInset

*代码演示:

#import "TestTableViewController.h"

@interface TestTableViewController ()

@end

@implementation TestTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
//    self.automaticallyAdjustsScrollViewInsets = NO;
    
//    self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 49, 0);
}

#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 30;
}

- (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.backgroundColor = [UIColor redColor];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"%zd", indexPath.row];
    
    return cell;
}

//点击每行cell打印contentInset
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"%@", NSStringFromUIEdgeInsets(tableView.contentInset));
}
@end
分析.gif 分析.gif

通过添加导航栏与TabBar观察发现有穿透效果.

这个属性默认是YES,允许控制器调整内部的内边距,当scrollView有状态栏,导航栏, tabBar就会调整内边距.如何设置为NO,就手动调整.

设置tableView的背景颜色
从IOS7开始有穿透效果,是由内边距造成.
从iOS7开始,默认情况下控制器的View占据正个屏幕.tableView的内容有很多cell, 非常长.还可以往上移动,当穿过导航栏就有穿透效果,超出父控件, Y值越大. 超出离开屏幕看不见被循环利用.

iOS7以前, 整个tableView不会填充屏幕, 假如屏幕高度480 , 会480 - 64 = 416. 那么屏幕高度是416.
内容显示上去是不会调整内边距,没有穿透效果.

contentInset的调整
默认情况下, 如果一个控制器A处在导航控制器管理中, 并且控制器A的第一个子控件是UIScrollView, 那么就会自动调整这个UIScrollView的contentInsetUIEdgeInsetsMake(64, 0, 0, 0) // 有导航栏
UIEdgeInsetsMake(20, 0, 0, 0) // 没有导航栏

默认情况下, 如果一个控制器A处在导航控制器管理中, 并且导航控制器又处在UITabBarController管理中, 并且控制器A的第一个子控件是UIScrollView, 那么就会自动调整这个UIScrollView的contentInsetUIEdgeInsetsMake(64, 0, 49, 0)

如何禁止上述的默认问题?
控制器A.automaticallyAdjustsScrollViewInsets = NO;

上一篇下一篇

猜你喜欢

热点阅读