0

I need to animate an NSImageCell on an NSOutlineView. I want it to look as the Sync Icon next to the device on iTunes.

Any ideas?

mikywan
  • 1,495
  • 1
  • 19
  • 38

1 Answers1

1

Ok, i just spent like 30 minutes researching this :-). The best way to do this is with an NSImageView, because you can just call +setFrameCenterRotation:(float) with the animator like so.

    NSImageView *v = [whatever];
    [[v animator] setFrameCenterRotation:(float)whateverYouWant];
Chance Hudson
  • 2,849
  • 1
  • 19
  • 22