I've got a question, my app consists of several CollectionViews next to each other in a ScrollView, if one Cell gets clicked, a Detail view appears, using this code:
DetailCell *detailCell = [[DetailCell alloc] initWithDetails:_pageCategorie and: indexPath];
[_nav pushViewController:detailCell animated:YES];
Everything works flawlessly, you can go to the DetailView, then back to CollectionView and then on the DetailView of another Cell, and so on... The Problem is, that if you repeat this several times (10+) the app starts to heavily lag on my iPhone. So I think when I leave a DetailView and get back to the CollectionView, the DetailView remains in the memory. What can I do against this behavior? I'm using ARC if it does matter