Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created May 11, 2020 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevencurtis/1d69a5199bd0e9db34e44c41eca23641 to your computer and use it in GitHub Desktop.
Save stevencurtis/1d69a5199bd0e9db34e44c41eca23641 to your computer and use it in GitHub Desktop.
centerView
let centerView = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
centerView.backgroundColor = .green
centerView.center = CGPoint(x: 200, y: 200)
self.view.addSubview(centerView)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment