I'm trying to animate some of the cells in my NSOutlineView. I need to animate an icon to rotate as the iTunes syncing icon next to the device, on the left panel.

I'm not really experienced in the animating field, I found this simple solution by looking all over the internet:

- (void)startAnimation:(CALayer *)layer {    
    CABasicAnimation *spinAnimation = (CABasicAnimation *)[layer animationForKey:@"spinAnimation"];
    if (!spinAnimation) {
        spinAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
        spinAnimation.toValue = [NSNumber numberWithFloat:-(5*2*M_PI)];
        spinAnimation.duration = 10;
        spinAnimation.repeatCount = 10000;
        [spinAnimation setRemovedOnCompletion:YES];
        [spinAnimation setSpeed:2.0f];
        [layer addAnimation:spinAnimation forKey:@"spinAnimation"];    
    }
}

The problem I'm having with this solution is that neither of the different subclasses of NSCell has a CALayer that I can work with. So at first I've decided to subclass NSCell adding an NSImageView that contains an CALayer. The animation worked, but the experience was awful, the image view was incredibly inefficient, I could barely scroll and the animation only worked in one of the rows.

What I'm trying to do now is subclass NSButtonCell (I'll need to set an action to the cell, otherwise it would've been an NSImageCell), override the drawWithFrame method and add a subLayer to the NSView (controlView) received and then animate it.

The problem right now is that the animation won't work.

I leave you the code.

PLZ HELP!.

- (void)setObjectValue:(id<NSCopying>)obj {
    @try {        
        [super setImage:[NSImage imageNamed:@"syncImage.png"]];
        [super setObjectValue:nil];        
    }
    @catch (NSException *exception) {
        NSLog(@"CustomImageViewCell-setObjectValue: %@", [exception description]);       
        [self setImage:nil];
        [super setObjectValue:nil];           
    }    
}

- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
    [super drawWithFrame:cellFrame inView:controlView];
    if (![controlView layer]) {
        CALayer *layer = [CALayer layer];
        [layer setFrame:[controlView frame]];
        [controlView setLayer:layer];
    }

    CALayer *layer = [CALayer layer];
    [layer setFrame:cellFrame];
    [[controlView layer] addSublayer:layer];    

    [self startAnimation:layer];    
}

Thanks in advance.

Mikywan.

link|improve this question

71% accept rate
I'm working on a solution with Apple's support. As soon as I have, I will post it in here. – mikywan Aug 8 '11 at 18:00
Hi, you have solution? – SAKrisT Jan 18 at 18:59
Sorry, what Apple people gave me didn't work either and I don't have time to continue with this right now. – mikywan Feb 10 at 20:01
feedback

1 Answer

Edit: This answer only works for use in iOS -- Original Question is for use in OSX


I would suggest using UIImageView's animationImages and animationDuration properties. (I believe that this is essentially what Apple does for their UIActivityIndicator class.) This should be cheaper/perform better than constantly recalculating the rotated image.

So, use an image editor and save out multiple "frames" of your icon in sequential rotated positions, and use those to populate an array for the animationImages property.

link|improve this answer
1  
Sorry but this solution doesn't work for me since it's for iOS. I'm working for MAC. Thanks anyway. – mikywan Jul 27 '11 at 12:39
ack, sorry! made a note at the top of my answer in case someone else finds your question but is looking to solve this question on iOS. – HachiEthan Jul 27 '11 at 16:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.