Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. self.imageView.sd_setImageWithURL(MYIMAGEURL
  2. , placeholderImage: nil
  3. , options: SDWebImageOptions.RetryFailed
  4. , progress: {(receivedSize: Int!, expectedSize: Int!) in
  5.  
  6. }
  7. , completed:{(image: UIImage?, error: NSError?, cacheType: SDImageCacheType!, imageURL: NSURL?) in
  8. if image {
  9. UIView.transitionWithView(self.imageView
  10. , duration: 0.3
  11. , options: UIViewAnimationOptions.AllowUserInteraction | UIViewAnimationOptions.TransitionCrossDissolve
  12. , animations: {
  13.  
  14. }
  15. , completion: {(finished) in
  16.  
  17. })
  18. }
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement