Dev:SBSRelaunchAction

From The Apple Wiki

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