Here's my take on singletons - I like them over the use of holding onto instances in some central place like the app delegate, only because if you put a number of instances in the AppDelegate then you have every class including AppDelegate.h, and therefore having compilation dependancies on every class thats included by the AppDelegate even if it's not being used. Using singletons you only include what you need.
The negative side of singletons to me is you have to include some extra stuff to write them correctly, and they can just hang around in memory which you have little enough of. You then also need to write extra code to rid yourself of a singleton when you are done with it.
One pattern that can work well is to have a singleton container that holds simpler instances of related classes - so the container only has to be the one written carefully, and can also be responsible for cleaning instances when they are not needed.
In the end you need some way to get to some central information the app stores. The ways are singletons, user defaults, a database (core data/SQLLite), or just keeping instances of stuff around in the app delegate. If you need to persist things anyway, why not just use the database or the user defaults (remember the latter is really truly for user settings and not just random app data!).