Show Categories & Top Posts

Monthly Archives: March 2012

So today I realised it was Earth Hour. The event didn’t have much hype this year so I suppose you can forgive me for forgetting about it. The only reason I remembered it was because it came up on one of my frequented forums. I started looking back into the beginnings of the thread (now

So the new iPad was released about two weeks ago and on the release weekend they sold 3 million devices.

Adding a map to your app can be a great was to display location based information. It also gives your app a nice professional polished feel if done properly. it doesn’t take much to drop in a map and adding overlays is trivial. Sounds like a great framework, that is until you need something a

When developing on the Mac and using custom frameworks in your application, when you compile the frameworks are copied into your applications bundle then linked at runtime. These frameworks will most likely be bundled up with their headers. Some of the frameworks you include may not be things you want to make public to the world, which you are essentially doing by including the headers with the framework.

Since Xcode 4.1 when your application throws an exception your console just prints a list of function pointers and you don’t get a proper stack trace. This isn’t helpful if you’re trying to find the exact line the error occurred on.

In Xcode the build settings screen can be pretty daunting for some people, especially when you start iOS/Mac development. Knowing which settings to pick can be tricky, but I still see a lot of people that do this individually for each of their projects, which makes it easy to miss crucial build parameters you don’t want to distribute your app without. Using a .xcconfig file is extremely useful for solving this problem, it is a type of file for determining build parameters, meaning you can have this file sitting in one spot and have each of your projects referencing it. If you need to make a build setting change to all your projects, you can just add it to this one file and the next time you compile each of the projects the change will be taken into account.

Some simple CSS tips and tricks for styling your forms. The tutorial includes rounded corner fields, styling based on input field types, applying on focus styles and using images as submit buttons.

This is an email sent to our clients on launch of the New iPad today Team, You may have heard that a “New iPad” (that’s the name) was released overnight. This will impact clients with native iPad apps. The major differences are: 1. High resolution screen with 4 times more pixels than the iPad 2. This means

In Objective-C most things that get passed around inherit from NSObject. Because of this when you want to add a primative type to an array or dictionary you need to wrap it in an NSObject, usually an NSNumber. If you have specifically set an NSNumber’s value/type you can easily just use intValue, floatValue etc etc to pull out which ever type you put back in, but how do you know which type should be pulled out if your code is dynamic and uses any type of NSNumber.