Demon Cam Promo Video

Wow that Promotion Video for the Demon Cam is just awesome! I wonder if they will be able to actually make money with the app.

The app is iPhone-only right now, available at $0.99. A HD or Pro version for the iPad will probably follow at some point.

Published: 2011-08-16 — Comments

CocoaHeads Siegen September Meeting

Next monthly meeting of the CocoaHeads Siegen scheduled for September, 13th 2011 at 19:00, feat: “iOS 5 - New and Noteworthy” (Benjamin Mies). Third meeting already and this time we also have a nice flyer!

CocoaHeads Siegen September Flyer

On a related note: The server running the CocoaHeads Siegen website will be down on August, 27th 2011 due to some power supply related maintenance work at the Universität Siegen.

Published: 2011-08-15 — Comments

Random crashes with iOS 4.2.1

I received several complaints about random crashes lately. The complaints of course did not mention any specific version of iOS nor any other useful details. So I had to digg into it myself. As it turned out the crashes were due to the use of DISPATCH_QUEUE_PRIORITY_BACKGROUND, which is not only unavailable with iOS 4.2.1 (and earlier), but also causes dispatch_async to crash - which is rather bad IMHO, a fallback to DISPATCH_QUEUE_PRIORITY_LOW would be better from both the user’s and the developer’s POV.

Published: 2011-08-13 — Comments

How to uncrush pngcrushed images from an iOS App Bundle

I recently had to restore some PNG files from an iOS App Bundle, which apparently did not work very well, since they have been compressed automatically using Apple’s version of pngcrush when they were copied to the App Bundle folder during archiving. Fortunately it’s quite easy to revert the optimizations using the following command (assuming you have installed the Apple Developer Tools and the iOS SDK):

$ mkdir ~/reverted
$ /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/pngcrush -dir ~/reverted -revert-iphone-optimizations -q *.png

This will create a folder reverted in your home directory with the uncrushed PNG files.

Published: 2011-08-04 — Comments