自动布局:动画更改为NSLayoutConstraint倍数

时间:2013-12-11 15:35:48

标签: ios uikit autolayout nslayoutconstraint

我有这个简单的观点:

- (void)viewDidLoad
{
    [super viewDidLoad];
    redBox = [[UIView alloc] init];
    [redBox setBackgroundColor:[UIColor redColor]];
    [redBox setTranslatesAutoresizingMaskIntoConstraints:NO];
    [self.view addSubview:redBox];

    //H:
    widthConstraint = [NSLayoutConstraint constraintWithItem:redBox
                                                   attribute:NSLayoutAttributeWidth
                                                   relatedBy:NSLayoutRelationEqual
                                                      toItem:self.view
                                                   attribute:NSLayoutAttributeWidth
                                                  multiplier:0.5
                                                    constant:0.0];
    [self.view addConstraint:widthConstraint];

    //More constraints... 
}

我想设置redBox宽度增加的动画。

我试过这个:

widthConstraint.constant = 100;

[UIView animateWithDuration:1
                 animations:^{
                     [self.view layoutIfNeeded];
                 }
 ];

这会将视图的宽度增加100并对其进行动画处理,但我需要将其增加一个比例到其superview的宽度。换句话说,我想将widthConstraint的{​​{1}}设置为multiplier

但是NSLayoutConstraint’s multiplier is readonly!这是否意味着每次我想要对其0.8进行更改动画时,我是否必须删除,修改和重新添加widthConstraint?还是有更好的方式?

2 个答案:

答案 0 :(得分:6)

不幸的是,没有更好的方法。使用不同的乘数删除和重新添加是您唯一的选择。请提交您希望看到multiplier进行重写的错误。

答案 1 :(得分:2)

之前我问了question。我们只找到一种方法,它删除约束并稍后使用修改倍数添加它。 @“这是Apple的宝贝”(©My Boss)

<强> UPD

查看Masonry mb,您可以使用常量替换普通约束上的multipler。