共用方式為


UIView.Constraints 屬性

定義

這個 上的 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[]

屬性值

預設值為空陣列。

屬性

備註

自動設定會使用 ConstraintsUIView 來配置其 Subviews 。 這些條件約束是使用 AddConstraint(NSLayoutConstraint)AddConstraints(NSLayoutConstraint[]) 設定。

P:UIKit.NSLayoutConstraint.DebugDescription屬性有助於偵錯自動設定問題。

foreach(var c in mainView.Constraints)
{
    Console.WriteLine(c.DebugDescription);
}              

適用於

另請參閱