如何在iphone sdk中显示.jpeg或.gif或.tiff类型的图像

时间:2010-10-13 12:23:00

标签: iphone objective-c uiimageview

我在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];

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

谢谢你, Madan Mohan

1 个答案:

答案 0 :(得分:1)

尝试使用:

imageView.image = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"imagename" ofType:@"png"]];

然后用您的文件名和类型替换imagename和png。