UIView.Constraints 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
這個 上的 UIView 自動設定所使用的條件約束。
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual UIKit.NSLayoutConstraint[] Constraints { [Foundation.Export("constraints")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.Constraints : UIKit.NSLayoutConstraint[]
屬性值
預設值為空陣列。
- 屬性
備註
自動設定會使用 Constraints 的 UIView 來配置其 Subviews 。 這些條件約束是使用 AddConstraint(NSLayoutConstraint) 或 AddConstraints(NSLayoutConstraint[]) 設定。
P:UIKit.NSLayoutConstraint.DebugDescription屬性有助於偵錯自動設定問題。
foreach(var c in mainView.Constraints)
{
Console.WriteLine(c.DebugDescription);
}
適用於
另請參閱
- <xref:UIKit.UIView.AddConstraint>
- <xref:UIKit.UIView.AddConstraints>
- <xref:UIKit.UIView.RemoveConstraint>
- <xref:UIKit.UIView.RemoveConstraints>
- TranslatesAutoresizingMaskIntoConstraints