[iOS] 오토레이아웃(Auto Layout)의 모든 것 - 4 / 오토레이아웃 코드 예제
오토레이아웃을 코드로 작성하는 방법은 3가지가 있습니다. 1. Initializer //예시 let leading = NSLayoutConstraint(item: blueView, attribute: .leading, relatedBy: .equal, toItem: bottomContainer, attribute: .leading, multiplier: 1.0, constant: 0) 2. VisualFormat //예시 let horzFmt = "|[b]|" let views: [String: Any] = ["b": blueView] let horzConstraints = NSLayoutConstraint.constraints(withVisualFormat: horzFmt, options: [], me..
iOS
2021. 1. 3. 14:15
공지사항