我使用Adobe Photoshop,创建了一个.tiff图像。 然后我将此图像附加到UIImageView。
代码:
UIImage *img = [UIImage imageNamed:@"xxx.tiff"];
UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
[self.view addSubview:imgView];
但是,图像没有完全显示。它非常粗糙,丢失了许多细节!
我该如何处理?
答案 0 :(得分:3)
如果您有权访问Photoshop,为什么还要选择保存TIFF?
PNG是iPhone上速度最快,支持率最高的图片格式,请将其另存为PNG!