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

 

相关文章:

  • 2021-12-30
  • 2021-04-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-05
  • 2021-06-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2019-01-29
相关资源
相似解决方案