Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save WrathChaos/c6a705cb5ca729da8ed37f225972a2a2 to your computer and use it in GitHub Desktop.

Select an option

Save WrathChaos/c6a705cb5ca729da8ed37f225972a2a2 to your computer and use it in GitHub Desktop.
Swift 3 : CGRectMake Function
func CGRectMake(_ x: CGFloat, _ y: CGFloat, _ width: CGFloat, _ height: CGFloat) -> CGRect {
return CGRect(x: x, y: y, width: width, height: height)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment