AutoLayout适配时,如何获得AutoLayout完成适配后的子控件的真实frame

在使用了AutoLayout后,一些主动调整高度的控件,如UIImageView, UILabel,UIButton等,不会在更新(updateConstraintsIfNeeded)后,获取到frame,这时候获取到的frame还是上一次的frame,实验了好久,终于找到方法了。

     如果你的是UIViewController,每次更新后会调用  viewDidLayoutSubviews 方法,我们可以在这里计算更新后的高度,如:

    

- (void)viewDidLayoutSubviews {

    [super viewDidLayoutSubviews];

    

    NSLog(@"%@", _contenLabel);

    [_scrContainViewHeightConstaint setConstant:CGRectGetMaxY(_contenLabel.frame)];

    [_scrContaintView updateConstraintsIfNeeded];

    

}


  如果你用的是UIView,我们可以在  layoutSubviews  方法计算更新后的高度, 如:


-(void)layoutSubviews {

    [super layoutSubviews];

    

    [self setNeedsLayout];

    [self layoutIfNeeded];

    

    NSLog(@"%@", _contenLabel);

    [_scrContainViewHeightConstaint setConstant:CGRectGetMaxY(_contenLabel.frame)];

    [_scrContaintView updateConstraintsIfNeeded];

}


你可能感兴趣的:(autolayout)