Skip to content

Instantly share code, notes, and snippets.

@eugenebokhan
Created March 2, 2018 12:00
Show Gist options
  • Save eugenebokhan/78e577ddc3289852311a2fcf94dcfbe2 to your computer and use it in GitHub Desktop.
Save eugenebokhan/78e577ddc3289852311a2fcf94dcfbe2 to your computer and use it in GitHub Desktop.
CGRect extensions
extension CGRect {
var mid: CGPoint {
return CGPoint(x: midX, y: midY)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment