Is't there a way set multiple variables equal to same value in Swift? like:
self.view1.backgroundColor = .white
self.view2.backgroundColor = .white
self.view3.backgroundColor = .white
make it into one line
self.view1.backgroundColor, self.view2.backgroundColor, self.view3.backgroundColor = .white