Skip to content

Instantly share code, notes, and snippets.

@jwilling
Created December 28, 2013 15:09
Show Gist options
  • Save jwilling/8160367 to your computer and use it in GitHub Desktop.
Save jwilling/8160367 to your computer and use it in GitHub Desktop.
NSViewLayerContentsRedrawCrossfade on 10.8
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
context.duration = 4.f;
context.allowsImplicitAnimation = YES;
[view.layer addAnimation:CATransition.animation forKey:@"contents"];
view.layer.contents = someImage;
} completionHandler:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment