开发者

animated popup view similar to one in Ipad music folder

开发者 https://www.devze.com 2023-02-24 05:12 出处:网络
I would like to know what is the name of the functionality that is used in the Ipad\'s Music folder, where when an album folder is clicked, details regarding that album pops up in an animated vi开发者

I would like to know what is the name of the functionality that is used in the Ipad's Music folder, where when an album folder is clicked, details regarding that album pops up in an animated vi开发者_C百科ew.

I tried using presentModelViewController but its functionality is different.

It would be great if someone could help me out.


I just managed to get sth. like this to work using CoreAnimation / QuartzCore Framework... be sure to

#import <QuartzCore/QuartzCore.h>

when you want to animate, use CATransform3Dand the poorly documented CATransform3D.m34 property. this will do the first half of the animation (assuming 200x200<->450x450 with 180° rotation):

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationDuration:0.5];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationDelegate:self];
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / -1000; // this turns on perspective!
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, 90.0f * M_PI / 180.0f, 0.0f, 1.0f, 0.0f);
someView.layer.transform = rotationAndPerspectiveTransform;
someView.bounds = CGRectMake(0, 0, 325, 325);

[UIView commitAnimations];

for the second half of the animation, you have to add/remove your view to the hierarchy. this example shows hiding/showing of a view that already exists as a subview of someView, it also makes use of a BOOL isUp instance variable (the first half of the aniation is independent of the isUp-flag!)

- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
{
    if (flag) {
        if (isUp) {
            someSubView.hidden = YES; // hide subview
            [UIView beginAnimations:nil context:NULL];

            [UIView setAnimationDuration:0.5];
            [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
            CATransform3D rotationAndPerspectiveTransform = CATransform3DRotate(someView.layer.transform, -90.0f * M_PI / 180.0f, 0.0f, 1.0f, 0.0f);
            someView.layer.transform = rotationAndPerspectiveTransform;
            someView.bounds = CGRectMake(0, 0, 200, 200);

            [UIView commitAnimations];
            isUp = NO;
        } else {
            someSubView.hidden = NO; // Show subview
            [UIView beginAnimations:nil context:NULL];

            [UIView setAnimationDuration:0.5];
            [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
            CATransform3D rotationAndPerspectiveTransform = CATransform3DRotate(someView.layer.transform, 90.0f * M_PI / 180.0f, 0.0f, 1.0f, 0.0f);
            someView.layer.transform = rotationAndPerspectiveTransform;
            someView.bounds = CGRectMake(0, 0, 450, 450);

            [UIView commitAnimations];
            isUp = YES;
        }
    }
}

one last thing: everything in your view will appear mirrored, it might not be the ideal solution, but mirroring back by applying a CGAffineTransform to the subview does the trick:

- (void)viewDidLoad
{
    [super viewDidLoad];
    someSubView.transform = CGAffineTransformMakeScale(-1, 1);
    isUp = NO;
}

i'm alredy a month late with this solution but i hope it helped someone :)

i first tried using the animateWithDuration:animations:completion: block-based API but that turned out to lag heavily (no smooth first/second-half animaiton even without touching subviews).


On the iPad you have several different options with regards to animating a modal view controller, you can find them here: UIModalTransitionStyle.

However, if you are referring to the "zoom and flip" sort of effect on the album I'm pretty sure this is private behaviour so you would need to develop this yourself.... you might be able to accomplish this with Core Graphics/Quartz.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号