SBAccelerometerInterface: Difference between revisions

From iPhone Development Wiki
m (Undo revision 460 by KennyTM~ (Talk) (wrong info))
m (→‎References: IPFHeader replacement)
 
Line 22: Line 22:


== References ==
== References ==
{{IPFHeader|SpringBoard|.app}}
 
* Header: http://github.com/kennytm/iphone-private-frameworks/blob/master/SpringBoard/SBAccelerometerInterface.h
{{occlass|library=SpringBoard.app|navbox=1}}

Latest revision as of 14:01, 11 August 2015

SBAccelerometerInterface is a singleton class that can deliver accelerometer events to registered clients. This class is available starting from version 2.2.

Turn on accelerometer events within SpringBoard

When the SpringBoard is visible (i.e. the active display stack is empty), the accelerometer will be turned off entirely. The following code can force accelerometer events to be reported even when there is no running apps:

SBAccelerometerInterface* interface = [objc_getClass("SBAccelerometerInterface") sharedInstance];
SBAccelerometerClient* client = [[interface valueForKey:@"clients"] lastObject];
client.updateInterval = 0.1;  // set to 0 to turn off.
[interface updateSettings];

To obtain the current orientation, listen to the com.apple.springboard.rawOrientation Darwin notification and use the code below to obtain the orientation:

int token;
uint64_t state;
notify_register_check("com.apple.springboard.rawOrientation", &token);
notify_get_state(token, &state);
notify_cancel(token);
UIDeviceOrientation orientation = state;

References