SpringBoardPlugins
SpringBoardPlugins contains plugins for SpringBoard. The exact location for this directory is determined by the method -[SpringBoard springBoardPluginsDirectory]
SpringBoardPlugins serve many purposes, including these:
- Supporting “ZoomTouch”, the accessibility feature that magnifies the screen by two to five times.[1]
- Supporting lock screen bundles, such as the Nike and iPod lockscreens. This is the basis of Cydget.
Lock screen bundles have been supported starting in 2.1, and ZoomTouch starting in 3.0.
See TheiPhoneWiki for a list of plugins.
Contents
Structure of ZoomTouch bundle
The ZoomTouch bundle must be named ZoomTouch.bundle. The principal class should implement the +disableZoom and +enableZoom methods.
Enabling ZoomTouch
ZoomTouch is the only non-lockscreen plugin. As such, it is hard-coded into SpringBoard.
...
// Inside SpringBoard
[(SpringBoard *)[UIApplication sharedApplication] setZoomTouchEnabled:YES];
...
Structure of lock screen bundles
A lock screen bundle must have an extension of .bundle. The principle class should implement the +rootViewController method, and returns an SBAwayViewPluginController.
Enabling lock screen bundles
Lock screen bundles can be toggled using SpringBoardServices's SBEnableLockScreenBundle() function outside of SpringBoard, and SBAwayController's -enableLockScreenBundleWithName: and -disableLockScreenBundleWithName: within SpringBoard. When called outside of SpringBoard, the binary must have the com.apple.springboard.activateawayviewplugins entitlement.
References
- ↑ Apple - Accessibility - iPhone - Vision http://www.apple.com/accessibility/ios/#vision
|