diff options
author | Teddy Wing | 2018-10-09 14:31:36 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-09 14:31:36 +0200 |
commit | 2985bf318f4f367ae8a50a4a665ed0c765a1aa33 (patch) | |
tree | 2acd482cfc7fb99cfdf86152a8e35a37eea86c42 /DomeKey/AppDelegate.h | |
parent | a4640221186905db82e3d9e71c5d28e6f6bf2b5e (diff) | |
download | DomeKey-2985bf318f4f367ae8a50a4a665ed0c765a1aa33.tar.bz2 |
Try moving MPRemoteCommandCenter to AppDelegate
Wanted to see if moving this closer to the launch point of the
application and also storing a reference to the command center in an
ivar would change anything. It didn't, still doesn't appear to work for
listening to Bluetooth button events.
Diffstat (limited to 'DomeKey/AppDelegate.h')
-rw-r--r-- | DomeKey/AppDelegate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/DomeKey/AppDelegate.h b/DomeKey/AppDelegate.h index 6b1d9a4..b343d6c 100644 --- a/DomeKey/AppDelegate.h +++ b/DomeKey/AppDelegate.h @@ -11,6 +11,9 @@ @interface AppDelegate : NSObject <NSApplicationDelegate> { HeadphoneKey *_headphone_key; + MPRemoteCommandCenter *_blargh; } +- (void)mpmediaplayerBS; + @end |