Skip to content

Instantly share code, notes, and snippets.

@TarasShu
Created July 21, 2020 13:34
Show Gist options
  • Save TarasShu/407e9c425ea72d3e5866e52e5b4e937f to your computer and use it in GitHub Desktop.
Save TarasShu/407e9c425ea72d3e5866e52e5b4e937f to your computer and use it in GitHub Desktop.
for i in 0..<count{
let sq = UIView()
let x = sq.frame.maxX
let color: [UIColor] = [.systemRed,
.systemYellow,
.systemBlue,
.systemGray,
.systemPink,
.systemGray2]
sq.frame = CGRect(x: i + ,
y: 400 ,
width: 200,
height: 200)
sq.backgroundColor = Array.randomElement(color)()!
squeres.append(sq)
}
for i in squeres {
scrollView.addSubview(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment