Search code examples
objective-cuiimageviewrotationuibarbuttonitemuiviewanimation

Animating only the image in UIBarButtonItem


Ive seen this effect in 2 apps and I REALLY want to find how to do it.

The animation is in a UIBarButtonItem, and is only to the image. The image is a + symbol, and it rotates to a X.

If you want to see the effect you have to start a conversation with someone and next to the text input theres the + button for images and emoji's. Or heres a video of the effect in another app, after he taps the bar button you see it rotate to a X, http://www.youtube.com/watch?v=S8JW7euuNMo.

I have found out how to do the effect but only on a UIImageView, I have to turn off all the autoresizing and the view mode has to be centered, then apply the rotation transform to it. I have tried many ways of trying to have it work in a bar item and so far the best way is adding a image view instance, then setting it up and setting the view mode centered and autoresizing off and then using that image view for a custom bar item view. But when i do this, the effect works except while its doing it, the image will go off to the side a little bit instead of staying where it already is. Ive tried getting the center before the animation and set it during the animation but that doesnt do anything.


Solution

  • So the answer for this is you have to make a instance of the Image view, then set it up with no resizing and view mode is centered. Then add the image view to a UIButton with custom type, and then use the button as the custom view for the bar item.

    - (IBAction)animate {
        [UIView animateWithDuration:0.5 delay:0.0 options:UIViewAnimationOptionCurveLinear animations:^{
            imageView.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(45));
        } completion:^(BOOL finished) {
            imageView.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(0));
            if ([imageView.image isEqual:[UIImage imageNamed:@"Add.png"]]) {
                imageView.image = [UIImage imageNamed:@"Close.png"];
            }
            else imageView.image = [UIImage imageNamed:@"Add.png"];
        }];
    }
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Add.png"]];
        imageView.autoresizingMask = UIViewAutoresizingNone;
        imageView.contentMode = UIViewContentModeCenter;
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(0, 0, 40, 40);
        [button addSubview:imageView];
        [button addTarget:self action:@selector(animate) forControlEvents:UIControlEventTouchUpInside];
        imageView.center = button.center;
        barItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        navItem.rightBarButtonItem = barItem;
    }