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
SBSyncController: Difference between revisions - iPhone Development Wiki

SBSyncController: Difference between revisions

From iPhone Development Wiki
m (Added Navbox)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Kill all applications in switcher =
= Kill all applications in switcher =
1. First kill all the applications 
<code lang="objc">
  [(SBSyncController *)[NSClassFromString(@"SBSyncController") sharedInstance] _killApplications];</code>
2. then remove the applications from the switcher


iOS 8
1. First kill all the applications
<code lang="objc">
 
  [[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayLayouts"] removeAllObjects];</code>
<source lang="objc">[(SBSyncController *)[NSClassFromString(@"SBSyncController") sharedInstance] _killApplications];</source>
 
2. Then remove the applications from the switcher
 
iOS 7
iOS 7
<code lang="objc">
<source lang="objc">[[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayIdentifiers"] removeAllObjects];</source>
  [[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayIdentifiers"] removeAllObjects];</code>
 
iOS 8
<source lang="objc">[[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayLayouts"] removeAllObjects];</source>
 
{{occlass|library=SpringBoard.app|navbox=1}}

Latest revision as of 13:59, 11 August 2015

Kill all applications in switcher

1. First kill all the applications

[(SBSyncController *)[NSClassFromString(@"SBSyncController") sharedInstance] _killApplications];

2. Then remove the applications from the switcher

iOS 7

[[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayIdentifiers"] removeAllObjects];

iOS 8

[[[NSClassFromString(@"SBAppSwitcherModel") sharedInstance] valueForKey:@"_recentDisplayLayouts"] removeAllObjects];