«nslayoutconstraint» 태그된 질문

NSLayoutConstraint는 제약 기반 레이아웃 시스템에 의해 충족되어야하는 두 사용자 인터페이스 객체 간의 관계를 정의하는 제약입니다. UIKit에서 iOS 6.0 이상에서 사용할 수 있으며 AppKit에서 OS X v10.7 이상에서 사용할 수 있습니다.

8
자동 레이아웃에서 하위 뷰의 X를 중앙에 배치하면 "제약 조건에 대해 준비되지 않음"이 발생합니다.
펜촉을 통해 초기화되는 사용자 지정 UIView 하위 클래스가 있습니다. 에서가 -awakeFromNib, 나 하위 뷰를 생성하고 수퍼에 중심을 시도하고있다. [self setInteralView: [[UIView alloc] init]]; [[self internalView] addConstraint: [NSLayoutConstraint constraintWithItem: [self internalView] attribute: NSLayoutAttributeCenterX relatedBy: NSLayoutRelationEqual toItem: self attribute: NSLayoutAttributeCenterX multiplier: 1 constant: 0]]; 이로 인해 중단되고 다음과 같은 출력이 발생합니다. 2013-08-11 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.