我刚刚在XCode 3.2上创建了一个新的Cocoa项目。我在雪豹身上跑步。
cannot find protocol declaration for 'NSApplicationDelegate'
NSApplicationDelegate是 new protocol as of 10.6
#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5) @interface MyAppDelegate : NSObject #else @interface MyAppDelegate : NSObject <NSApplicationDelegate> #endif