layoutSubView和UpdateConstraint

在做自定义cell的时候,我一般会在LayoutSubView和UpdateConstraint中设置子view的frame,但是多多少少都会在这两个方法里面遇见坑。这次写下来只是为了做个对比。

以自定义View内调用这两个方法作对比

#import "TestView.h"

@interface  TestView()

@property (nonatomic, assign) NSInteger count;

@end

@implementation TestView

//- (instancetype)init {
//    if (self = [super init]) {
////        self.frame = CGRectMake(0, 0, 200, 200);
////        self.backgroundColor = [UIColor redColor];
//    }
//    return self;
//}

- (void)layoutSubviews {
    _count++;
    NSLog(@"初始化调用了%ld次",_count);
    [super layoutSubviews];
}


#import "ViewController.h"
#import "TestView.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self.view addSubview:[TestView new]];
    // Do any additional setup after loading the view, typically from a nib.
}
@end

结果是

2018-10-22 11:21:48.202205+0800 TestFrame[18201:428360] 初始化调用了1次

如果重写了init方法

- (instancetype)init {
    if (self = [super init]) {
//        self.frame = CGRectMake(0, 0, 200, 200);
//        self.backgroundColor = [UIColor redColor];
    }
    return self;
}

- (void)layoutSubviews {
    _count++;
    NSLog(@"初始化调用了%ld次",_count);
    [super layoutSubviews];
}

结局还是一样
2018-10-22 11:27:35.208790+0800 TestFrame[18375:450111] 初始化调用了1次

当然设置背景颜色也是调用了1次

添加了self.frame = CGRectMake(0, 0, 200, 200);
结果是

2018-10-22 13:43:16.873562+0800 TestFrame[21976:564028] 初始化调用了1次
2018-10-22 13:43:16.873702+0800 TestFrame[21976:564028] 初始化调用了2次

将屏幕旋转会再调用一次


layoutSubView和UpdateConstraint_第1张图片
旋转屏幕

添加一个子View

- (instancetype)init {
    if (self = [super init]) {
        self.frame = CGRectMake(0, 0, 200, 200);
        self.backgroundColor = [UIColor redColor];
        UIImageView *sub = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 30, 40)];
        sub.backgroundColor = [UIColor yellowColor];
        [self addSubview:sub];
    }
    return self;
}

- (void)layoutSubviews {
    _count++;
    NSLog(@"初始化调用了%ld次",_count);
    [super layoutSubviews];
}

结果是调用了2次

2018-10-22 13:53:51.607028+0800 TestFrame[22279:597161] 初始化调用了1次
2018-10-22 13:53:51.607176+0800 TestFrame[22279:597161] 初始化调用了2次

那如果添加多个子View呢

- (instancetype)init {
    if (self = [super init]) {
        self.frame = CGRectMake(0, 0, 200, 200);
        self.backgroundColor = [UIColor redColor];
        for (NSInteger i = 0; i < 3; i++) {
            UIImageView *sub = [[UIImageView alloc] initWithFrame:CGRectMake(i * 30, 0, 30, 40)];
            sub.backgroundColor = [UIColor yellowColor];
            [self addSubview:sub];
        }
        UILabel *ss = [[UILabel alloc] initWithFrame:CGRectMake(0, 60, 30, 30)];
        ss.text = @"sss";
        ss.backgroundColor = [UIColor blueColor];
        [self addSubview:ss];
    }
    return self;
}

- (void)layoutSubviews {
    _count++;
    NSLog(@"初始化调用了%ld次",_count);
    [super layoutSubviews];
}

结果还是
2018-10-22 13:57:54.479344+0800 TestFrame[22416:610776] 初始化调用了1次 2018-10-22 13:57:54.479660+0800 TestFrame[22416:610776] 初始化调用了2次

假如在View继承于ScorllView,在滚动的时候便会不断调用layoutSubView

总结:
layoutSubView

  • 初始化一个View会调用一次View,如果在初始化方法里面改变了frame,也会再调用一次,后续修改frame,除非frame前后值不同,否则便不会再调用
  • 在一个方法内调用n次addSubView只会调用一次layoutSubView,一个方法内如果调用了addSubView就会调用layoutSubView
  • 每次旋转屏幕都会调用layoutSubView一次
  • 假如该View继承于ScrollView,那么该ScrollView在滚动的时候会不断调用layoutSubView
  • 顾名思义,修改子View的frame也会触发父View的layoutSubView,但如果只是修改x、y坐标,就不会调用

UpdateConstraint
UpdateConstraint查阅了资料
主要如下:

  • updateConstraints主要是更新View的约束,并会调用其所有子视图的该方法去更新约束
  • 当纯代码自定义一个View时,想把约束写在updateConstraint方法中,就一定要重写requiresConstraintBasedLayout方法,返回true

你可能感兴趣的:(layoutSubView和UpdateConstraint)