Update Pinterest CDN URL in example code (#613)

This commit is contained in:
Derek Argueta 2017-10-12 04:44:30 -07:00 committed by Huy Nguyen
parent 929bd4c60e
commit 72d33fc88e

View File

@ -30,7 +30,7 @@
// Do any additional setup after loading the view, typically from a nib. // Do any additional setup after loading the view, typically from a nib.
ASNetworkImageNode *imageNode = [[ASNetworkImageNode alloc] init]; ASNetworkImageNode *imageNode = [[ASNetworkImageNode alloc] init];
imageNode.URL = [NSURL URLWithString:@"https://s-media-cache-ak0.pinimg.com/originals/07/44/38/074438e7c75034df2dcf37ba1057803e.gif"]; imageNode.URL = [NSURL URLWithString:@"https://i.pinimg.com/originals/07/44/38/074438e7c75034df2dcf37ba1057803e.gif"];
// Uncomment to see animated webp support // Uncomment to see animated webp support
// imageNode.URL = [NSURL URLWithString:@"https://storage.googleapis.com/downloads.webmproject.org/webp/images/dancing_banana2.lossless.webp"]; // imageNode.URL = [NSURL URLWithString:@"https://storage.googleapis.com/downloads.webmproject.org/webp/images/dancing_banana2.lossless.webp"];
imageNode.frame = self.view.bounds; imageNode.frame = self.view.bounds;