How to find your own apps in Xcode

Sometimes it can be difficult to find which of your own apps are installed on a device, especially when you’ve made so many over the years and also have installed countless ones from the app store. Here’s how to list “your apps” in Xcode 5: connect the device head over to Window – Organizer – […]

How to replace fonts in TwentyThirteen

I must admit that the new default font in TwentyFourteen looks damn sexy – but I’ve only just gotten used to the TwentyThirteen theme. Don’t get me wrong, if you’re after a magazine style theme then TwentyFourteen does a great job. Since I didn’t want to change themes again over at versluis.com, I thought perhaps … Read more

How to restore your iOS device with DFU / Recovery Mode

Sometimes iOS updates go awry. It may happen that the device hangs itself for good, refusing to activate or be recognised by iTunes. In that case, it’s time for a DFU reset, also known as Recovery Mode. Download an .ipsw file for your device from the Developer Centre (either a beta or the release version) […]

How to fix “property’s synthesized getter follows Cocoa naming convention for returning ‘owned’ objects”

Today Xcode surprised me with an error message I hadn’t heard before: property’s synthesized getter follows Cocoa naming convention for returning ‘owned’ objects. At first I thought, “isn’t that a good thing?”, and after checking how I had defined a new property I was clueless why this was happening: @property (nonatomic, strong) Phrase *newPhrase; What […]

How to add a custom initialiser to a Managed Object in Core Data

NSManagedObjects behave differently to NSObjects on many levels. If you’d like to add custom start-up behaviour in your NSManagedObjects, you’ll have noticed that overriding the standard init method isn’t working. Instead, we can use the awakeFromFetch method. This is called automatically when a managed object is retrieved from the Core Data stack: – (void)awakefrom { […]

Disk Space Pie Chart – v0.6 released

I’ve just released a new version of my (totally unpopular) Disk Space Pie Chart plugin for WordPress. The update addresses the background colour of the pie chart which worked well with WordPress 3.7 and below, but now that we have a snazzy new colour scheme in the admin interface, I made sure it still looks … Read more