2

I got a UICollectionView with several cells on the screen.

I want to add one animation that can zoom out/in the cell;

The logic behind is when clicking the cell, it will invoke [self.navigationController pushViewController:_chartViewController animated:NO];

I am not clear how to zoom in/out the new _chartViewController

Looking for the APIs and some key takeaways for doing it. Thank in advance!

Wingzero
  • 9,644
  • 10
  • 39
  • 80

3 Answers3

2

Actually, what I am looking for is here, on GitHub. Also, check out objc.io Issue 5

Sam Spencer
  • 8,492
  • 12
  • 76
  • 133
Wingzero
  • 9,644
  • 10
  • 39
  • 80
1

What you're looking for is called a Custom Segue Animation. In your example you click a cell and it zooms to another view controller.

You can find a good example here that uses a tableview instead of a collection view: https://github.com/visnup/tableview-open

This code employs a tableview - when a cell is clicked it "zooms" to the respective view controller that is associated with that cell.

Sean Dev
  • 1,239
  • 1
  • 17
  • 31
0

I have added the following lines in to the viewDidLoad method of my UICollectionViewController:

[collectionView setMinimumZoomScale: 0.25];
[collectionView setMaximumZoomScale: 4];
  1. zoom entire UICollectionView - It also has a link to Sample code for UICollectionView. You might be interested in checking it.
  2. Adding pinch zoom to a UICollectionView.
  3. Make UICollectionView zoomable? Link

or check this.

Premal Khetani
  • 3,175
  • 1
  • 26
  • 58
Fatti Khan
  • 1,543
  • 1
  • 11
  • 19