Reputation: 16539
I need to write Mac app which will start automatically only in case when another particular app was launched. Could you please provide entry point where to look and what to use. Do I need to have special autostart up process? I am new to Mac app development.
Upvotes: 1
Views: 67
Reputation: 3003
You can add observer using CFNotificationCenterGetDistributedCenter()
for example.
Please, take a look at this article, here may be the solution Inter-process communication
Upvotes: 1