반응형
let cv = UIView(frame: CGRect(x: 100, y: 100, width: 400, height: 400))
cv.translatesAutoresizingMaskIntoConstraints = false
cv.backgroundColor = .red
self.view.addSubview(cv)
cv.widthAnchor.constraint(equalToConstant: 50).isActive = true
cv.heightAnchor.constraint(equalToConstant: 50).isActive = true
cv.topAnchor.constraint(equalTo: self.view.topAnchor,constant: 100).isActive = true
cv.leadingAnchor.constraint(equalTo: self.view.leadingAnchor,constant: 100).isActive = true
좌 - cv. translatesAutoresizingMaskIntoConstraints = false
우 - cv. translatesAutoresizingMaskIntoConstraints = true
반응형
'iOS' 카테고리의 다른 글
Swift 실행 속도 확인하기 (0) | 2020.12.06 |
---|---|
Swift Hugging Priority Resistance Priority 쉽게 생각하자 (0) | 2020.12.06 |
ViewController Life Cycle 뷰컨트롤러 라이프 사이클 (0) | 2020.11.17 |
코드로 UI 작성 시 유의점 (0) | 2020.11.14 |
ITMS-90381: Too many symbol files 오류 해결 방법 (0) | 2020.09.10 |