class cell1:UICollectionViewCell{
//button
button.addTarget(self, action: #selector(handleChangeDate), for: .touchUpInside)
func handleChangeDate(){
cell2.changeLabel()
}
}
class cell2:UICollectionViewCell{
//label
func changeLabel(){
self.label.text = "123"
}
}