I noticed that when creating a new project with the iPhone Master-Detail template in Xcode 4.2 beta 4, it does:

// AppDelegate.h

@interface AppDelegate : UIResponder <UIApplicationDelegate>

Why does AppDelegate inherit from UIResponder instead of NSObject?

link|improve this question

63% accept rate
If you had to guess, what would you say? – Caleb Aug 1 '11 at 0:26
You might be right and I don't want to comment too much on something still under NDA, but that wouldn't be my guess. – Caleb Aug 1 '11 at 2:41
feedback

3 Answers

Check the documentation of UIResponder. Since AppDelegate can respond to touch events, it implements the UIResponder interface.

link|improve this answer
feedback

I would guess it is so it has access to the global undo manager.

link|improve this answer
feedback

Unless there's something new in iOS 5 and not yet documented, then I think this is a typo with this Xcode 4.2 beta 4 template. In an iOS app, the app delegate should subclass NSObject, not UIResponder, e.g.:

@interface AppDelegate : NSObject <UIApplicationDelegate>

For iOS apps, in UIKit (for Cocoa Touch, e.g., iPhone & iPad), UIApplication is the last responder in the responder chain.

For Mac OS X apps, in the Application Kit (for Cocoa, e.g., Mac), the app delegate is the last responder in the responder chain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.