[iOS] Layout(1) - Frame-Based Layout
2023. 1. 21. 23:02
iOS/iOS
"Frame-Based Layout"은 Programmatically하게 view들의 frame을 지정해주는 방식이다. Frame "Frame Rectangle"은 superView로부터 view의 location과 size를 정의한다. var frame: CGRect { get set } frame은 CGRect 타입의 변수인데, CGRect은 location을 저장할 수 있는 origin프로퍼티와 size를 정의할 수 있는 size 프로퍼티가 존재한다. public struct CGRect { public init() public init(origin: CGPoint, size: CGSize) public var origin: CGPoint public var size: CGSize } 이때 정의한 ..