SBAppSliderController: Difference between revisions

From iPhone Development Wiki
mNo edit summary
mNo edit summary
 
Line 12: Line 12:


== Toggling the app switcher ==
== Toggling the app switcher ==
<source lang=objc>
<source lang=objc>
[[%c(SBUIController) sharedInstance] _toggleSwitcher];
[[%c(SBUIController) sharedInstance] _toggleSwitcher];
Line 17: Line 18:


== Determining if switcher is visible/showing ==  
== Determining if switcher is visible/showing ==  
<source lang=objc>
<source lang=objc>
[[%c(SBUIController) sharedInstance] isAppSwitcherShowing]
[[%c(SBUIController) sharedInstance] isAppSwitcherShowing]
</source>
</source>
== References ==


{{occlass|library=SpringBoard.app|navbox=1}}
{{occlass|library=SpringBoard.app|navbox=1}}

Latest revision as of 14:03, 11 August 2015

Notes about the app switcher (called the "app slider" on iOS 7), also known as the "task switcher" or "multitasking switcher".

Activating the app switcher

// Pre iOS 7
[[%c(SBUIController) sharedInstance] activateSwitcher];

// iOS 7
[[%c(SBUIController) sharedInstance] _activateAppSwitcherFromSide:2];

Toggling the app switcher

[[%c(SBUIController) sharedInstance] _toggleSwitcher];

Determining if switcher is visible/showing

[[%c(SBUIController) sharedInstance] isAppSwitcherShowing]

References