sagarkothari
sagarkothari

Reputation: 24810

Does Xcode compile images?

What I did is as follows.

alt text

My Question is

Upvotes: 2

Views: 535

Answers (2)

tenveer
tenveer

Reputation: 31

As BoltClock mentioned that png files are compressed, but you can view it on MAC using a little application called iphoneapp , i use it regularly and found it useful

Upvotes: 1

BoltClock
BoltClock

Reputation: 723448

When Xcode builds your app, it compresses the PNG images in your project with a tool known as pngcrush. Then it stores them in your application bundle (the .app file), as you observe with iPhone Explorer. This compression removes enough data from your images to cause them not to display when you try to view them on your Mac. They will look fine on your devices and simulator, though.

I'm not sure how to check your images per your last question, other than by checking that they show up correctly on a device.

Upvotes: 7

Related Questions