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

SBSRelaunchAction

From iPhone Development Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

SBSRelaunchAction objects provide relaunching SpringBoard action with relaunch URL and style. Available as of iOS 9.3

Relaunch style

typedef enum {
      None                   = 0,
      RestartRenderServer    = (1 << 0), // also relaunch backboardd
      SnapshotTransition     = (1 << 1),
      FadeToBlackTransition  = (1 << 2),
} SBSRelaunchActionStyle;

Methods

Signature +(SBSRelaunchAction *)actionWithReason:(NSString *)reason options:(SBSRelaunchActionStyle)options targetURL:(NSURL *)url;
Available in 9.3 —

References