Hello,
This is what I do: I have a favicon.ico in my resources (for example http://google.com/favicon.ico)
Then I have a UIImageView which loads that image.
self.imgTestIcon.image = [UIImage imageNamed:@"favicon.ico"];
The image showed in the simulator or the in iPhone is the same but with the red color switched with the blue one. Could it be a loading bug from apple?
I also have the same result downloading directly from Internet:
self.imgTestIcon.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://google.com/favicon.ico"]]];
Thanks David.