Skip to content

Instantly share code, notes, and snippets.

@Parietal
Forked from licvido/app.swift
Last active August 29, 2015 14:25
Show Gist options
  • Save Parietal/dc9aac2addaba0d2a984 to your computer and use it in GitHub Desktop.
Save Parietal/dc9aac2addaba0d2a984 to your computer and use it in GitHub Desktop.
SWIFT: Fade when changing UIImageView's image
let toImage = UIImage(named:"image.png")
UIView.transitionWithView(self.imageView,
duration:5,
options: .TransitionCrossDissolve,
animations: { self.imageView.image = toImage },
completion: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment