I'm going to init an array with 6 UIImageViews in this way:
var imageViews = [UIImageView](repeating: UIImageView(), count: 6)
But I found that every element in it has the same address. If I change one imageView I'll change all of them.
I don't know how it works and what should I do to separate them?