1. 程式人生 > >UIImage 獲取url圖片資源

UIImage 獲取url圖片資源

//UIImage  獲取url圖片資源 
-(UIImage *) getImageFromURL:(NSString *)fileURL {
 
    UIImage * result;
 
    NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]];
 
    result = [UIImage imageWithData:data];
 
    return result;
 
}