Creating a Custom Delegate

Custom Delegates are one of the best ways of communicating amongst a series of classes in iOS. I always forget how to add custom delegates correctly, so here I go documenting it for future reference. I hope this guide is able to help others as well as myself. Setting up your Custom Delegate Here’s the [...]

Custom Delegate error with ARC

When Apple introduced ARC (automatic reference counting), it meant a great deal of change for much of our existing code. New errors seem to crop up every time we convert an older project across to the new format. This particular error concerned some custom delegates that we’d set up to handle communication between a UIPopOverController [...]