如何使用objective-c在iphone sdk中显示.jpeg或.gif或.tiff类型的图像

时间:2010-10-14 06:27:36

标签: iphone objective-c image

我在iphone中显示图像时遇到问题。我使用下面的代码,但它只适用于.png文件。

  UIImageView* imageView=[[UIImageView alloc] initWithFrame:CGRectMake(6,10, 80, 80)];
  imageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:customerListObject.customerImage]]];
  [myView addSubview:imageView];
  [imageView release];

我无法显示其他类型的图像文件,请建议我解决方案。

0 个答案:

没有答案