Conversation
|
I would really like some tests for this, but I won't hold the PR, see my minor comments. For example, the's definitely a way to zoom out a view programmatically and verify that the snapshot is zoomed out vs. not. |
|
pushed fixes for every comment, and added snapshot tests. It's weird how awkward you have to handle UIScrollViews, I've never had to do this amount of hacking to do snapshots in Folio. |
|
Is probably more related to Core Animation stuff in the CATileLayer as a guess. I had a few guesses at how to do it without the UIWindow + VC dance, but didn't succeed. |
|
Failed specs. |
|
🍏 |
|
See inline comments. There're references to Artsy Folio, which should be changed to ARTiledImageView. |
There was a problem hiding this comment.
This one shouldn't be Demo either I believe, see other files in this project.
|
I am going to merge, maybe you can look through headers across the board. I think they should all say |
@dblock => fixes for animations, zoomed out centering, and opening up the double tap gesture
The way to get expected behaviour when dealing with images that are not full screen width is to have a single view that holds both tiled view & backing view. I originally thought that you had to have the tiled view as the
viewForZoomfor tiling to work. Turns out I was wrong, in Eigen we got away with this by not allowing zooming, and Folio didn't need it because it had it's own tiler until I moved to this recently.before

after

also, you may want to override the double tap gesture with a single tap so I've exposed that.