UIApplicationを継承すると、アプリケーションで発生するいろいろなイベントが受け取れます。 継承した独自のUIApplicationクラスを使用するには、Other Sourcesにある、main.mを以下のように書き換えます。 int main(int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, @"MyApplication", @"MyAppDelegate"); [pool release]; return retVal; } UIApplicationMain関数の第3引数に、UIApplicationを継承したクラス名を指定します。 第4引数はUIApplicat