Can I put all connection related functions into it's own (singleton?) class or possibly the app delegate?
I've got a lot of code repetition right now...
eg. this method is in at least 5 files:
- (void)connection:(NSURLConnection*)connection didFailWithError:(NSError*)error;
Would I just import a class with these methods in it? Do I have to extend or whatever to use them?