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
FBSSystemService - iPhone Development Wiki

FBSSystemService

From iPhone Development Wiki
Revision as of 04:27, 4 August 2016 by PoomSmart (talk | contribs) (SBSRelaunchAction example.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FBSSystemService is a private class introduced in iOS 8 for supplying various system actions.

Methods

Signature +(FBSSystemService *)sharedService;
Available in 8.0 —

Create FBSSystemService singleton.

Signature -(void)sendActions:(NSSet *)actions withResult:(id *)result;
Available in 8.0 —

This method can send appropriate system-related actions. For examples, SBSRestartRenderServerAction and SBSRelaunchAction actions.

Relaunch SpringBoard with relaunch URL

	// Also link FrontBoardServices and SpringBoardServices to your project
	NSURL *relaunchURL = [NSURL URLWithString:@"prefs:root=DISPLAY&path=MAGNIFY"];

        // Fade to black only (iOS 8 Display Zoom's method)
	SBSRestartRenderServerAction *restartAction = [SBSRestartRenderServerAction restartActionWithTargetRelaunchURL:relaunchURL];
        // Fade to black, then boot screen
        SBSRelaunchAction *restartAction = [SBSRelaunchAction actionWithReason:@"RestartRenderServer" options:4 targetURL:relaunchURL];

	[[FBSSystemService sharedService] sendActions:[NSSet setWithObject:restartAction] withResult:nil];