SBAppSliderController: Difference between revisions

From iPhone Development Wiki
m (Britta moved page Appswitcher to App switcher without leaving a redirect)
(added tiny intro)
Line 1: Line 1:
Notes about the '''app switcher''', also called the "task switcher" or "multitasking switcher".
== Activating the app switcher ==
== Activating the app switcher ==


Line 6: Line 8:
[[SBUIController sharedInstance] activateSwitcher];
[[SBUIController sharedInstance] activateSwitcher];
</source>
</source>
* Post iOS7:
 
* Post iOS 7:
<source lang=objc>
<source lang=objc>
[[SBUIController sharedInstance] _activateAppSwitcherFromSide:2];
[[SBUIController sharedInstance] _activateAppSwitcherFromSide:2];
</source>
</source>

Revision as of 19:56, 3 March 2014

Notes about the app switcher, also called the "task switcher" or "multitasking switcher".

Activating the app switcher

  • Pre iOS 7:
[[SBUIController sharedInstance] activateSwitcher];
  • Post iOS 7:
[[SBUIController sharedInstance] _activateAppSwitcherFromSide:2];