Skip to content

Instantly share code, notes, and snippets.

@mxcl
Last active August 29, 2015 14:02
Show Gist options
  • Save mxcl/b08815091216920975b5 to your computer and use it in GitHub Desktop.
Save mxcl/b08815091216920975b5 to your computer and use it in GitHub Desktop.
dispatch_promise(^{
return md5(email);
}).then(^(NSString *md5){
return [NSURLConnection GET:@"http://gravatar.com/%@", md5];
}).then(^(UIImage *gravatarImage){
self.imageView.image = gravatarImage;
});
dispatch_promise{ () -> String in
md5(email)
}.then{ (md5:String) -> NSURLConnection in
NSURLConnection.GET("http://gravatar.com/\(md5)")
}.then{ [weak self] (gravatarImage:UIImage) in
self?.imageView.image = gravatarImage
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment