我在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
答案 0 :(得分:1)
尝试使用:
imageView.image = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"imagename" ofType:@"png"]];
然后用您的文件名和类型替换imagename和png。