Wednesday, 29 February 2012

School boy error

Note to self: When implementing a UITouchGestureRecogniser make sure that it doesn't cover the UINavigationBar or else it will override the buttons.

Friday, 10 February 2012

Doxygen

Have configured Doxygen using the link below. Unfortunately I haven been bole to get a perl scrip to run in Xcode's behaviour settings.

Tutorial on setting up Doxygen on Xcode

Still not convinced that it works sufficiently in Xcode but ill have another look at it later.

Wednesday, 8 February 2012

NSMutableDictionary and Ordering

Interesting little problem:

I have a mutable dictionary but when I call NSArray = [NSMutableDictionary allObjects];

I get an array of objects but they are in a different order to the order I added them to the dictionary.

So now I have to set up some kind of sort function.