ios Autolayout改变约束, 动画效果处理

用自动布局, 有时候拉出来一条约束, 需要改变, 单纯的改变会比较生硬, 这时想到加个简单的animation动画,

[UIView animateWithDuration:0.2f animations:^{
        self.selectButtonLeading.constant = 17;
        self.headImageLeading.constant = 50;
    } completion:^(BOOL finished) {
    }];

但是, 这样动画没有生效, 我重新看了 WWDC12 视频”最佳做法,掌握自动布局”,涵盖动画。加上 [self layoutIfNeeded]; 就可以了

    [UIView animateWithDuration:0.2f animations:^{
        self.selectButtonLeading.constant = 17;
        self.headImageLeading.constant = 50;
        [self layoutIfNeeded];
    } completion:^(BOOL finished) {
    }];

转自:http://www.itstrike.cn/Question/a8cf36cd-9fd9-4c00-b2e4-a4da375961ce.html

你可能感兴趣的:(AutoLayout)