IOS 代码修改故事版中的自动布局参数

先将故事版中的布局参数拖到代码中作为参数;

    [self.view removeConstraint:self.top];//先删除原有的对于顶部的约束
    //接下来通过代码添加一个约束
    [self.view addConstraint:[NSLayoutConstraint constraintWithItem:self.abx attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:400]];
    [self.view layoutIfNeeded];//更新布局



你可能感兴趣的:(Autolayout自动布局)