I use Adobe Photoshop,created a .tiff image.
Then I attach this image to an UIImageView.
Code Like:
UIImage *img = [UIImage imageNamed:@"xxx.tiff"];
UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
[self.view addSubview:imgView];
But,the image is not completely displayed.It’s very rough and lost many details!
How can I deal with it?
If you have access to Photoshop why would you choose to save a TIFF?
PNGs are the fastest and most supported image format on the iPhone, save it as a PNG instead!