UIView.SystemLayoutSizeFittingSize 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
SystemLayoutSizeFittingSize(CGSize) |
자동 레이아웃 제약 조건을 충족할 수 있는 UIView 가장 작거나 가장 큰 크기를 계산합니다. |
SystemLayoutSizeFittingSize(CGSize, Single, Single) |
제약 조건 및 피팅 우선 순위 인수에 따라 에 대한 |
SystemLayoutSizeFittingSize(CGSize)
자동 레이아웃 제약 조건을 충족할 수 있는 UIView 가장 작거나 가장 큰 크기를 계산합니다.
[Foundation.Export("systemLayoutSizeFittingSize:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual CoreGraphics.CGSize SystemLayoutSizeFittingSize (CoreGraphics.CGSize size);
abstract member SystemLayoutSizeFittingSize : CoreGraphics.CGSize -> CoreGraphics.CGSize
override this.SystemLayoutSizeFittingSize : CoreGraphics.CGSize -> CoreGraphics.CGSize
매개 변수
- size
- CGSize
이 매개 변수는 UILayoutFittingCompressedSize 가능한 가장 작은 크기를 검색하거나 UILayoutFittingExpandedSize 가능한 가장 큰 크기를 검색하는 것입니다.
반환
이 와 관련된 제약 조건을 충족하는 가장 작은(ifsize
UILayoutFittingCompressedSize == ) 또는 가장 큰 (ifUILayoutFittingExpandedSize == size
)SizeF를 반환합니다.UIView
- 특성
설명
이 메서드는 의 자동 레이아웃 제약 조건 및 의 제약 this
UIView 조건과 일치하는 가장 크거나 작은 크기를 계산할 Subviews수 있습니다. 이 메서드는 미리 정의된 SizeF또는 UILayoutFittingCompressedSizeUILayoutFittingExpandedSize중 하나와 size
같음으로만 호출할 수 있습니다.
적용 대상
SystemLayoutSizeFittingSize(CGSize, Single, Single)
제약 조건 및 피팅 우선 순위 인수에 따라 에 대한 this
최적의 크기를 반환합니다.
[Foundation.Export("systemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual CoreGraphics.CGSize SystemLayoutSizeFittingSize (CoreGraphics.CGSize targetSize, float horizontalFittingPriority, float verticalFittingPriority);
abstract member SystemLayoutSizeFittingSize : CoreGraphics.CGSize * single * single -> CoreGraphics.CGSize
override this.SystemLayoutSizeFittingSize : CoreGraphics.CGSize * single * single -> CoreGraphics.CGSize
매개 변수
- targetSize
- CGSize
또는 UILayoutFittingExpandedSize이어야 UILayoutFittingCompressedSize 합니다.
- horizontalFittingPriority
- Single
- verticalFittingPriority
- Single
반환
- 특성