Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 841 Bytes

CGPoint.md

File metadata and controls

38 lines (28 loc) · 841 Bytes

CGPoint



CGPoint란?

  • 2차원 좌표계의 을 포함하는 구조체
  • CGPointCoreGraphics 프레임워크를 반입해야만 사용 가능한데 UIkit에 해당 프레임워크가 내포되어있어 UIKit만 반입해주면 된다.
CGPoint는 x와 y를 가지고있다.
public struct CGPoint {
    public var x: CGFloat

    public var y: CGFloat

    public init()

    public init(x: CGFloat, y: CGFloat)
}


CGPoint는 언제 사용할까

  • 요소들을 위치시킬 때 x, y 좌표가 필요한데 그때 CGPoint를 사용한다.
let pos: CGPoint = .init(x: 100, y: 200)


참고자료