Injae's Lab
Gallery Interest Calculator Mortgage Calculator Annual Tax Table GST Calculator Week Number Calendar Etc My Blog
Login
20190830.Version 1.0.9263.26623.

My Tech Choices

Title Load Facebook Image
Writer Injae Date 17/03/2014 7:10:04 PM View 1390 Up 1
With AFNetworking
NSString *imageUrl = [NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"];
[self.imageView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"profile.jpg"]];

Image load Sync
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"]];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
[self.imageView setImage:image];