Skip to content

Instantly share code, notes, and snippets.

@marekkrzynowek
Created October 11, 2017 12:53
Show Gist options
  • Save marekkrzynowek/0cc35084be63bbe97d292d24f4d0c644 to your computer and use it in GitHub Desktop.
Save marekkrzynowek/0cc35084be63bbe97d292d24f4d0c644 to your computer and use it in GitHub Desktop.
let bigSquare = UIView(frame: CGRect(x: 0, y: 0, width: 120, height: 120))
bigSquare.backgroundColor = UIColor.green
let smallSquare = UIView(frame: CGRect(x: 0, y: 0, width: 40, height: 40))
bigSquare.addSubview(smallSquare)
smallSquare.backgroundColor = UIColor.blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment