具有相同变量值的多个自动布局约束

时间:2015-11-12 12:46:32

标签: ios swift autolayout nslayoutconstraint

有没有办法从代码(或直接在界面构建器中)设置多个约束的常量,而不必为每个约束创建一个IBOutlet?

screenshot from xcode - interface builder

1 个答案:

答案 0 :(得分:1)

您可以使用以下内容:

public class ship{

    byte x,y;   

    byte []length;
    boolean direction; 


    public ship(byte x, byte y, byte length, boolean direction)
    {
        this.x=x;  
        this.y=y;
        this.length=new byte [length];  
        this.direction=direction;  
    }
}