I have a collection view of 2 columns and 3 rows. I have a button by which I change the language of my whole app from english to arabic. I wanted to flip my collection view as well .
I have successfully flipped the view (means my columns are swapped ) but they its cell also got reversed . Can anyone tell me how I can reverse back my cells of collection view ?
My code for flipping collection view :
[self.dashBoardCollectionView setTransform:CGAffineTransformMakeScale(-1, 1)];