NSAutoLayoutConstraints中Constraints属性的含义

时间:2013-08-20 04:39:18

标签: iphone ios autolayout

我想在我的程序中使用约束。我想以编程方式创建它们。

任何人都可以帮助我找出以下NSLayout属性的含义

NSLayoutAttributeLeft = 1,
NSLayoutAttributeRight,
NSLayoutAttributeTop,
NSLayoutAttributeBottom,
NSLayoutAttributeLeading,
NSLayoutAttributeTrailing,
NSLayoutAttributeWidth,
NSLayoutAttributeHeight,
NSLayoutAttributeCenterX,
NSLayoutAttributeCenterY,
NSLayoutAttributeBaseline,
谢谢。

1 个答案:

答案 0 :(得分:2)

https://developer.apple.com/library/ios/documentation/AppKit/Reference/NSLayoutConstraint_Class/NSLayoutConstraint/NSLayoutConstraint.html

查看常量部分。 通常,这些是指应用约束关系的视图部分。 边缘很容易理解。 中心的很容易。 基线是用于以自然方式对齐包含文本的视图。