1

I have two questions regarding Remote Control Events on iOS:

  1. I know that music applications are registered to remote control events and then can receive such events from the iPhone's player widget. Let's say I want my app to fire such events, is that possible?
  2. How does headphones for example generate those events?
rmaddy
  • 298,130
  • 40
  • 468
  • 517
Gal
  • 1,542
  • 2
  • 14
  • 30

2 Answers2

1

I don't know if it possible for headphone events but with private API, you can send some events like: home button press, power button press or mouse events (not tested).

You should read this book:

http://www.amazon.com/gp/product/1118057651/ref=pd_lpo_sbs_dp_ss_1?pf_rd_p=1535523702&pf_rd_s=lpo-top-stripe-1&pf_rd_t=201&pf_rd_i=0321278542&pf_rd_m=ATVPDKIKX0DER&pf_rd_r=0T2AMHJCEEKJN41YJHD5

It'll be a hard work to make this works.

Take a look at GSEvent to know how to send an event to OS (iOS).

Edit: I've found 2 event types in GSEvent.GSEventType:

kGSEventHeadsetButtonDown = 1018,
kGSEventHeadsetButtonUp = 1019,

PS: - this use private API so it will be rejected if you post this app to AppStore.

Duyen-Hoa
  • 14,296
  • 4
  • 30
  • 40
1

Without private API, you cannot send remotecontrol event to your application.

The reason is we cannot create such an Event (UIEvent) to send out by using:

[[UIApplication sharedApplication] sendEvent:anEvent];

You can, however save a registered event then play back by calling the above-function.

Duyen-Hoa
  • 14,296
  • 4
  • 30
  • 40