Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.11 KB

README.md

File metadata and controls

23 lines (19 loc) · 1.11 KB

SwitcherLoader

SwitcherLoader Example

Load custom UIViews into the AppSwitcher

NSBundles

  • SwitcherLoader loads your view from a bundle from /Library/SwitcherLoader/Plugins
  • Must be a valid NSBundle
  • The NSPricipalClass must be a subclass of a UIView
  • The bundle identifier must be set
  • Custom names and icons can be loaded by setting the name key and the icon key, icon must be in bundle
  • SwitcherLoader does check the MinimumOSVersion key in the bundle's plist, if you want any system version leave it blank

UIView

  • SwitcherLoader calls upon the initWithFrame: method, giving the view the frame of of the AppSwitchers height and width
  • Currently there is no support for viewDidAppear and viewDidDisappear methods