本地加载图片可以用这个:
[UIImage imageWithContentsOfFile:headPath];
但如果我们想直接跟上网址加载远程图片的话可以用这个:
NSURL *url = [NSURL URLWithString:@"http://www.ganchi.net//images/avatar_small/1330587370_small.jpg"];
return [UIImage imageWithData:[NSData dataWithContentsOfURL:url]];