Genie ipad effect

Does anyone know if there is an iPad implementation for the Genie animation line on MAC OSx? I would like to create some list on the left side and an action so that the Gen animation is of type “like OSx” animation to animate a section of moving parts into a list item (for example, minimizing windows on the MAC to the dock icon).

Thanks!

+4
source share
2 answers

The simplest implementation I've found is BCGenieEffect ( https://github.com/Ciechan/BCGenieEffect ). It is extremely easy to understand README, the actual implementation is just a few lines. Here is an example (found on their README) that shows 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.

+6
source

There is this option. There are many stackoverflow posts in this thread, the standard effect uses a private API, but can be found here .

+4
source

All Articles