Reload initial content on viewDidAppear
Hello I've spent a bit of time on this and can't seem to wrap my hear around it. I am using RFQuiltLayout with a menu that alternates it between a rear and front view controller. When I bring the RFQuiltLayout from the rear to the front again, the view controller does not reload the quilt and is just black. I noticed the example contained:
- (void) viewDidAppear:(BOOL)animated { [self.collectionView reloadData]; }
Which I thought would refresh the quilt. Any ideas or pointers would be greatly appreciated.
Thank you
Have you found a solution in the meantime? I think I've got the same issue here.
Instead of using view controllers have you considered using the views from the viewcontroller and using
[UIView transitionFromView:view]
and setting up the quilt just before?
I transition between a table and grid layout.