Genie effect ipad

animation, effect, ios, objective-c

Solution

The simplest implementation I've found is BCGenieEffect (https://github.com/Ciechan/BCGenieEffect). Not only is the README extremely easy to understand, the actual implementation is just a few lines. Here's an example (found on their README) that displays how to do this simply:

CGRect startRect = CGRectMake(30, 40, 50, 60);
[view genieOutTransitionWithDuration:0.7 
                           startRect:startRect
                           startEdge:BCRectEdgeLeft 
                          completion:nil];

I just used this in a project and it seems very reliable.

Problem

Does anyone know is there iPad implementation for Genie animation line on MAC OSx? I would like to create some list on the left side and on an action to make "like OSx" Genie animation to animate moving detail section into list item (like minimizing windows on MAC to the dock icon) Thanks!

Original source

Related problems