반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- docker
- os
- 운영체제
- kubernetes
- 프로세스
- AWS
- ios
- 인프라
- C++
- 데브옵스
- boj
- k8s
- Python
- swift 클로저
- NGINX
- linux
- 도커 컨테이너
- 부스트코스
- centOS7
- 네트워크
- 도커 이미지
- devops
- 쿠버네티스
- 도커 명령어
- 도커
- centOS
- Swift
- 컨테이너
- 리눅스
- 클라우드
Archives
- Today
- Total
귀염둥이의 메모
[iOS] Auto Layout(오토 레이아웃) 코드로 구현하기 본문
반응형
NSLayoutConstraint
- NSLayoutConstraint 인스턴스 생성 제약조건
- button과 texField에 기본간격(8.0)에 제약을 주기 위해 NSLayoutConstraint 인스턴스를 생성
NSLayoutConstraint(item: button,
attribute: .right,
relatedBy: .equal,
toItem: textField,
attribute: .left,
multiplier: 1.0,
constant: 8.0)
- button1 과 button2의 너비 값이 같도록 제약을 생성
NSLayoutConstraint(item: button1,
attribute: .width,
relatedBy: .equal,
toItem: button2,
attribute: .width,
multiplier: 1.0,
constant: 0.0)
Visual Format Language
- 사용 가능한 기호와 문자열
- button과 texField에 기본간격(8.0)에 제약
H:[button(>=50)]
- button1 과 button2의 너비 값이 같도록 제약을 생성
H:[button1(==button2)]
<참고>
부스트코스 - iOS 앱 프로그래밍 www.boostcourse.org/mo326/lecture/16849/
반응형
'iOS' 카테고리의 다른 글
[iOS] Delegate(델리게이트) 패턴 (1) | 2021.03.10 |
---|---|
[iOS] Cocoa Touch Framework, 코코아 터치 프레임워크(UIKit, Foundation) (0) | 2021.03.08 |
[iOS] MVC 디자인 패턴 (0) | 2021.03.08 |
[iOS] iOS의 뷰(View) 체계 (0) | 2021.02.10 |
[iOS] Auto Layout(오토 레이아웃) (0) | 2021.02.08 |
Comments