Created
July 21, 2020 13:34
-
-
Save TarasShu/407e9c425ea72d3e5866e52e5b4e937f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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