SBAppSliderController: Difference between revisions

From iPhone Development Wiki
(Created page with "To launch the app switcher [[[[SBUIController sharedInstance] _activateAppSwitcherFromSide:2]]]")
 
(Make the page a little nicer.)
Line 1: Line 1:
To launch the app switcher
== Activating the app switcher ==


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

Revision as of 19:29, 3 March 2014

Activating the app switcher

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