frame vs bounds (1) [ CGPoint, CGSize, CGRect ]
·
iOS/UIKit
이번 학습부터는 많이 헷갈리는 주제인 Frame과 bounds관련에서 시작해보자. 먼저 Frame과 bounds를 들어가기 전에 선행해서 학습하면 좋을 개념들을 학습해보자. 1. CGPoint public struct CGPoint { public init() public init(x: Double, y: Double) public var x: Double public var y: Double} View의 위치를 나타날 때 사용하는 좌표 값을 타나내는 정보이다.x와 y 값은 Double로 되어있고 기준은 왼쪽 위가 된다. 2. CGSizepublic struct CGSize { public init() public init(width: Double, heigh..