Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
SBLockScreenViewController: Difference between revisions - iPhone Development Wiki

SBLockScreenViewController: Difference between revisions

From iPhone Development Wiki
(SBLockScreenViewController.)
 
mNo edit summary
Line 1: Line 1:
'''SBLockScreenViewController''' is the controller representing the lockscreen. It hosts an [[SBLockScreenView]].
'''SBLockScreenViewController''' is the controller representing the lockscreen. It hosts an [[SBLockScreenView]]. Available in iOS 7+.


== Examples ==
== Examples ==

Revision as of 11:49, 12 March 2015

SBLockScreenViewController is the controller representing the lockscreen. It hosts an SBLockScreenView. Available in iOS 7+.

Examples

Accessing SBLockScreenViewController's SBLockScreenView

SBLockScreenManager *manager = [%c(SBLockScreenManager) sharedInstance];
SBLockScreenViewController *lockScreenViewController = [manager lockScreenViewController];
SBLockScreenView *lockScreenView = [lockScreenViewController lockScreenView];

References