Reputation: 462
I am pulling down some images and saving them to disk. Then dishing them out via UIImageView.
All works well in simulator under 4.2, but as soon as I switch it over to 4.3 all of the images are displayed inverted (they are xrays.. the black & white is reversed)
Any suggestions? I am just using
UIImageView *seriesImage = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:pathToImage]];
It works fine on 4.2, but not 4.3
any suggestions or ideas?
Upvotes: 0
Views: 142
Reputation: 7148
I'd be shocked if there was any noticeable change in how UIImageView
renders images between OS versions. The simulator isn't always totally reliable, so I'd recommend testing your code on a device running iOS 4.3.
Upvotes: 2