So, I took the plunge and subscribed to Apple’s new iTunes Match service. The draw card was being able to replace the poor quality of some of my CD rips. Most of my CD rips are too quiet in comparison with the rest of my music library and occasionally will contain jumps in the tracks forcing me to have to listen to each album after ripping and re-rip if necessary. This is very time consuming if you have lots of CDs to do.
Nov 11
6
I was asked to knock up an application which only had a small number of screens. So to make the project more interesting to me I decided to create it using XCode 4.2′s Storyboard feature. For those that don’t know this is a replacement for the traditional Interface Builder whereby one screen = one XIB file. With Storyboards, multiple screens are included in the same ‘storyboard’ and the transitions between the screen are defined. By doing this you can get a lot of the framework of an application completed without even writing a single line of code!
Oct 11
5
So you’ve got a developer account with Apple and you want to download an install the new iOS5 GM Seed on your iPhone BUT you sync your iPhone with the Windows version of iTunes. The problem is that the GM Seed is in DMG format (Mac OS disk image) and iTunes needs a .IPSW file to restore from.
Help is at hand in the form of a free download of 7-zip. The steps are as follows:
Sep 11
28
So, in your Cocos2d game you have a fly that animates and some event occurs, maybe a fly swatter appears, and you want it make your fly animate faster…
Searching Google gives lots of forum entries saying that it isn’t possible to change the animation speed whilst it is still running. They suggest stopping the current animation, creating a new one with a new speed and then starting the animation again.
In practice this is a less than acceptable solution mainly because the animation jerks as it starts again from the first frame. I’d guess that it is also very inefficient destroying and recreating the sprite animation objects.
Additional research has lead me to the correct answer which is… yes you can!
Our new Rooster game, as hinted in the previous post, will contain a few mini-games. The first of which uses the accelerometer for tilt control making our hero move left and right. I’ve never used the accelerometer before so I did a quick Google search to find out the basics.
This tutorial should take you beyond the basics and to the point of having a sprite accelerating across the screen.