iTunes を監視し、メイン アプリを起動/終了するヘルパー アプリを作成しました。
起動は完全に機能します。唯一の問題は、サンドボックス化のためにメイン アプリを終了できないことです。これらの 3 つのログを取得します。
12/23/12 8:45:37.522 PM appleeventsd[70]: Sandboxed application with pid 8293 attempted to lookup App:"Significator 2"/8877/0x0:0x150150 ???? sess=100011 but was denied due to sandboxing. (handleMessage()/appleEventsD.cp #2007) com.apple.coreservices.appleevents.peer.0x7fd9c2401f00.xpcq
12/23/12 8:45:37.000 PM kernel[0]: Sandbox: sandboxd(8888) deny mach-lookup com.apple.coresymbolicationd
12/23/12 8:45:37.873 PM sandboxd[8888]: ([8293]) SignificatorHelp(8293) deny appleevent-send ch.ilijatovilo.significator-2
ヘルパーアプリで次のように終了しようとしました:
NSRunningApplication *app = [[NSRunningApplication runningApplicationsWithBundleIdentifier:[self mainApplicationBundle].bundleIdentifier] objectAtIndex:0];
[app terminate];
もちろん、メイン アプリに別のオブザーバーを追加することもできますが、それは避けたいと思います。