Some handy Iphone dev hints:
Convert images to pvr:
1 | /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/texturetool –e PVRTC –f PVR –channel-weighting-perceptual –bits-per-pixel-4 –o particle.pvr particle.png |
Convert .wav to .caf:
1 | afconvert –f caff –d ima4@44100 sndBlubBig.wav |
Static analyze of your code using clang static analyzer:
1 | /somepath/checker-0.219/scan-build –k –V xcodebuild |