├── .gitignore ├── .travis.yml ├── Docs ├── Docs.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Docs.xcscheme ├── docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes │ │ │ ├── MSDynamicsDrawerFadeStyler.html │ │ │ ├── MSDynamicsDrawerParallaxStyler.html │ │ │ ├── MSDynamicsDrawerResizeStyler.html │ │ │ ├── MSDynamicsDrawerScaleStyler.html │ │ │ ├── MSDynamicsDrawerShadowStyler.html │ │ │ └── MSDynamicsDrawerViewController.html │ │ ├── Constants │ │ │ ├── MSDynamicsDrawerDirection.html │ │ │ └── MSDynamicsDrawerPaneState.html │ │ ├── Protocols │ │ │ ├── MSDynamicsDrawerStyler.html │ │ │ └── MSDynamicsDrawerViewControllerDelegate.html │ │ ├── css │ │ │ ├── styles.css │ │ │ └── stylesPrint.css │ │ ├── hierarchy.html │ │ ├── img │ │ │ ├── button_bar_background.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure_open.png │ │ │ ├── library_background.png │ │ │ └── title_background.png │ │ └── index.html │ │ ├── Nodes.xml │ │ ├── Tokens1.xml │ │ ├── Tokens10.xml │ │ ├── Tokens2.xml │ │ ├── Tokens3.xml │ │ ├── Tokens4.xml │ │ ├── Tokens5.xml │ │ ├── Tokens6.xml │ │ ├── Tokens7.xml │ │ ├── Tokens8.xml │ │ ├── Tokens9.xml │ │ ├── docSet.dsidx │ │ ├── docSet.dsidx-shm │ │ ├── docSet.dsidx-wal │ │ ├── docSet.mom │ │ ├── docSet.skidx │ │ ├── docSet.toc │ │ └── docSet.tokencache ├── html │ ├── Classes │ │ ├── MSDynamicsDrawerFadeStyler.html │ │ ├── MSDynamicsDrawerParallaxStyler.html │ │ ├── MSDynamicsDrawerResizeStyler.html │ │ ├── MSDynamicsDrawerScaleStyler.html │ │ ├── MSDynamicsDrawerShadowStyler.html │ │ └── MSDynamicsDrawerViewController.html │ ├── Constants │ │ ├── MSDynamicsDrawerDirection.html │ │ └── MSDynamicsDrawerPaneState.html │ ├── Protocols │ │ ├── MSDynamicsDrawerStyler.html │ │ └── MSDynamicsDrawerViewControllerDelegate.html │ ├── css │ │ ├── styles.css │ │ └── stylesPrint.css │ ├── hierarchy.html │ ├── img │ │ ├── button_bar_background.png │ │ ├── disclosure.png │ │ ├── disclosure_open.png │ │ ├── library_background.png │ │ └── title_background.png │ └── index.html └── publish │ ├── com.monospace.MSDynamicsDrawerViewController-1.0.xar │ └── monospace.atom ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── Example.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── Example.xcscheme │ │ └── Storyboard Example.xcscheme ├── Example │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Settings.png │ │ │ ├── Settings@2x-1.png │ │ │ ├── Settings@2x.png │ │ │ ├── Spotlight.png │ │ │ ├── Spotlight@2x-1.png │ │ │ ├── Spotlight@2x.png │ │ │ ├── iPad.png │ │ │ ├── iPad@2x.png │ │ │ ├── iPhone.png │ │ │ ├── iTunesArtwork.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── Default-568h@2x.png │ │ ├── Left Reveal Icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Left Reveal Icon.png │ │ │ └── Left Reveal Icon@2x.png │ │ ├── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo.png │ │ │ └── Logo@2x.png │ │ ├── Right Reveal Icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Right Reveal Icon.png │ │ │ └── Right Reveal Icon@2x.png │ │ └── Window Background.imageset │ │ │ ├── Contents.json │ │ │ ├── Window Background.png │ │ │ └── Window Background@2x.png │ ├── Example-Info.plist │ ├── Example-Prefix.pch │ ├── MSAppDelegate.h │ ├── MSAppDelegate.m │ ├── MSBounceViewController.h │ ├── MSBounceViewController.m │ ├── MSControlsViewController.h │ ├── MSControlsViewController.m │ ├── MSDynamicsViewController.h │ ├── MSDynamicsViewController.m │ ├── MSEditableTableViewController.h │ ├── MSEditableTableViewController.m │ ├── MSGesturesViewController.h │ ├── MSGesturesViewController.m │ ├── MSLogoViewController.h │ ├── MSLogoViewController.m │ ├── MSLongTableViewController.h │ ├── MSLongTableViewController.m │ ├── MSMapViewController.h │ ├── MSMapViewController.m │ ├── MSMenuCell.h │ ├── MSMenuCell.m │ ├── MSMenuTableViewHeader.h │ ├── MSMenuTableViewHeader.m │ ├── MSMenuViewController.h │ ├── MSMenuViewController.m │ ├── MSMonospaceWebViewController.h │ ├── MSMonospaceWebViewController.m │ ├── MSStylersViewController.h │ ├── MSStylersViewController.m │ ├── Storyboard Example-Info.plist │ ├── Storyboard.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── BuildHeaders │ └── MSDynamicsDrawerViewController │ │ ├── MSDynamicsDrawerStyler.h │ │ └── MSDynamicsDrawerViewController.h │ ├── Headers │ └── MSDynamicsDrawerViewController │ │ ├── MSDynamicsDrawerStyler.h │ │ └── MSDynamicsDrawerViewController.h │ ├── Local Podspecs │ └── MSDynamicsDrawerViewController.podspec │ ├── Manifest.lock │ ├── Pods-MSDynamicsDrawerViewController-Private.xcconfig │ ├── Pods-MSDynamicsDrawerViewController-dummy.m │ ├── Pods-MSDynamicsDrawerViewController-prefix.pch │ ├── Pods-MSDynamicsDrawerViewController.xcconfig │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.xcconfig │ └── Pods.xcodeproj │ └── project.pbxproj ├── LICENSE ├── MSDynamicsDrawerViewController.podspec ├── MSDynamicsDrawerViewController.xcworkspace └── contents.xcworkspacedata ├── MSDynamicsDrawerViewController ├── MSDynamicsDrawerStyler.h ├── MSDynamicsDrawerStyler.m ├── MSDynamicsDrawerViewController-Prefix.pch ├── MSDynamicsDrawerViewController.h └── MSDynamicsDrawerViewController.m ├── README.md ├── Rakefile └── Screenshots ├── Screenshot Bottom.png ├── Screenshot Left.png ├── Screenshot Right.png ├── Screenshot Top.png ├── bounce.gif ├── fling.gif ├── open-close.gif └── replace.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Docs/Docs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/Docs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Docs/Docs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/Docs.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Docs/Docs.xcodeproj/xcshareddata/xcschemes/Docs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/Docs.xcodeproj/xcshareddata/xcschemes/Docs.xcscheme -------------------------------------------------------------------------------- /Docs/docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Info.plist -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerFadeStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerFadeStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerParallaxStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerParallaxStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerResizeStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerResizeStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerScaleStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerScaleStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerShadowStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerShadowStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Classes/MSDynamicsDrawerViewController.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Constants/MSDynamicsDrawerDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Constants/MSDynamicsDrawerDirection.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Constants/MSDynamicsDrawerPaneState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Constants/MSDynamicsDrawerPaneState.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Protocols/MSDynamicsDrawerStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Protocols/MSDynamicsDrawerStyler.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/Protocols/MSDynamicsDrawerViewControllerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/Protocols/MSDynamicsDrawerViewControllerDelegate.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/css/styles.css -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/css/stylesPrint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/css/stylesPrint.css -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/hierarchy.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/img/button_bar_background.png -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/img/disclosure.png -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/img/disclosure_open.png -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/img/library_background.png -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/img/title_background.png -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Nodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Nodes.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens1.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens10.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens2.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens3.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens4.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens5.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens6.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens7.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens8.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/Tokens9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/Tokens9.xml -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.dsidx-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.dsidx-shm -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.dsidx-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.dsidx-wal -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.mom -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.skidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.skidx -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.toc -------------------------------------------------------------------------------- /Docs/docset/Contents/Resources/docSet.tokencache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/docset/Contents/Resources/docSet.tokencache -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerFadeStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerFadeStyler.html -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerParallaxStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerParallaxStyler.html -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerResizeStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerResizeStyler.html -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerScaleStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerScaleStyler.html -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerShadowStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerShadowStyler.html -------------------------------------------------------------------------------- /Docs/html/Classes/MSDynamicsDrawerViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Classes/MSDynamicsDrawerViewController.html -------------------------------------------------------------------------------- /Docs/html/Constants/MSDynamicsDrawerDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Constants/MSDynamicsDrawerDirection.html -------------------------------------------------------------------------------- /Docs/html/Constants/MSDynamicsDrawerPaneState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Constants/MSDynamicsDrawerPaneState.html -------------------------------------------------------------------------------- /Docs/html/Protocols/MSDynamicsDrawerStyler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Protocols/MSDynamicsDrawerStyler.html -------------------------------------------------------------------------------- /Docs/html/Protocols/MSDynamicsDrawerViewControllerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/Protocols/MSDynamicsDrawerViewControllerDelegate.html -------------------------------------------------------------------------------- /Docs/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/css/styles.css -------------------------------------------------------------------------------- /Docs/html/css/stylesPrint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/css/stylesPrint.css -------------------------------------------------------------------------------- /Docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/hierarchy.html -------------------------------------------------------------------------------- /Docs/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/img/button_bar_background.png -------------------------------------------------------------------------------- /Docs/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/img/disclosure.png -------------------------------------------------------------------------------- /Docs/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/img/disclosure_open.png -------------------------------------------------------------------------------- /Docs/html/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/img/library_background.png -------------------------------------------------------------------------------- /Docs/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/img/title_background.png -------------------------------------------------------------------------------- /Docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/html/index.html -------------------------------------------------------------------------------- /Docs/publish/com.monospace.MSDynamicsDrawerViewController-1.0.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/publish/com.monospace.MSDynamicsDrawerViewController-1.0.xar -------------------------------------------------------------------------------- /Docs/publish/monospace.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Docs/publish/monospace.atom -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Storyboard Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Storyboard Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Settings.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Settings@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Settings@2x-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Settings@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight@2x-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Spotlight@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/iPad.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/iPad@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/iPhone.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/iTunesArtwork.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Left Reveal Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Left Reveal Icon.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Left Reveal Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Left Reveal Icon.imageset/Left Reveal Icon@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Logo.imageset/Logo.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Right Reveal Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Right Reveal Icon.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Right Reveal Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Right Reveal Icon.imageset/Right Reveal Icon@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Window Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Window Background.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Window Background.imageset/Window Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Window Background.imageset/Window Background.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Window Background.imageset/Window Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Assets.xcassets/Window Background.imageset/Window Background@2x.png -------------------------------------------------------------------------------- /Example/Example/Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Example-Info.plist -------------------------------------------------------------------------------- /Example/Example/Example-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Example-Prefix.pch -------------------------------------------------------------------------------- /Example/Example/MSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSAppDelegate.h -------------------------------------------------------------------------------- /Example/Example/MSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSAppDelegate.m -------------------------------------------------------------------------------- /Example/Example/MSBounceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSBounceViewController.h -------------------------------------------------------------------------------- /Example/Example/MSBounceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSBounceViewController.m -------------------------------------------------------------------------------- /Example/Example/MSControlsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSControlsViewController.h -------------------------------------------------------------------------------- /Example/Example/MSControlsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSControlsViewController.m -------------------------------------------------------------------------------- /Example/Example/MSDynamicsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSDynamicsViewController.h -------------------------------------------------------------------------------- /Example/Example/MSDynamicsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSDynamicsViewController.m -------------------------------------------------------------------------------- /Example/Example/MSEditableTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSEditableTableViewController.h -------------------------------------------------------------------------------- /Example/Example/MSEditableTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSEditableTableViewController.m -------------------------------------------------------------------------------- /Example/Example/MSGesturesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSGesturesViewController.h -------------------------------------------------------------------------------- /Example/Example/MSGesturesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSGesturesViewController.m -------------------------------------------------------------------------------- /Example/Example/MSLogoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSLogoViewController.h -------------------------------------------------------------------------------- /Example/Example/MSLogoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSLogoViewController.m -------------------------------------------------------------------------------- /Example/Example/MSLongTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSLongTableViewController.h -------------------------------------------------------------------------------- /Example/Example/MSLongTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSLongTableViewController.m -------------------------------------------------------------------------------- /Example/Example/MSMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMapViewController.h -------------------------------------------------------------------------------- /Example/Example/MSMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMapViewController.m -------------------------------------------------------------------------------- /Example/Example/MSMenuCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuCell.h -------------------------------------------------------------------------------- /Example/Example/MSMenuCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuCell.m -------------------------------------------------------------------------------- /Example/Example/MSMenuTableViewHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuTableViewHeader.h -------------------------------------------------------------------------------- /Example/Example/MSMenuTableViewHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuTableViewHeader.m -------------------------------------------------------------------------------- /Example/Example/MSMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuViewController.h -------------------------------------------------------------------------------- /Example/Example/MSMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMenuViewController.m -------------------------------------------------------------------------------- /Example/Example/MSMonospaceWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMonospaceWebViewController.h -------------------------------------------------------------------------------- /Example/Example/MSMonospaceWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSMonospaceWebViewController.m -------------------------------------------------------------------------------- /Example/Example/MSStylersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSStylersViewController.h -------------------------------------------------------------------------------- /Example/Example/MSStylersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/MSStylersViewController.m -------------------------------------------------------------------------------- /Example/Example/Storyboard Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Storyboard Example-Info.plist -------------------------------------------------------------------------------- /Example/Example/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/Storyboard.storyboard -------------------------------------------------------------------------------- /Example/Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/BuildHeaders/MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h: -------------------------------------------------------------------------------- 1 | ../../../../MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h -------------------------------------------------------------------------------- /Example/Pods/BuildHeaders/MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h: -------------------------------------------------------------------------------- 1 | ../../../../MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h -------------------------------------------------------------------------------- /Example/Pods/Headers/MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MSDynamicsDrawerViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Local Podspecs/MSDynamicsDrawerViewController.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods-MSDynamicsDrawerViewController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-MSDynamicsDrawerViewController-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods-MSDynamicsDrawerViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-MSDynamicsDrawerViewController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-MSDynamicsDrawerViewController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-MSDynamicsDrawerViewController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Pods-MSDynamicsDrawerViewController.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MSDYNAMICSDRAWERVIEWCONTROLLER_OTHER_LDFLAGS = -framework QuartzCore -------------------------------------------------------------------------------- /Example/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Example/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController.podspec -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.h -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController/MSDynamicsDrawerStyler.m -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController/MSDynamicsDrawerViewController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController/MSDynamicsDrawerViewController-Prefix.pch -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.h -------------------------------------------------------------------------------- /MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/MSDynamicsDrawerViewController/MSDynamicsDrawerViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Rakefile -------------------------------------------------------------------------------- /Screenshots/Screenshot Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/Screenshot Bottom.png -------------------------------------------------------------------------------- /Screenshots/Screenshot Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/Screenshot Left.png -------------------------------------------------------------------------------- /Screenshots/Screenshot Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/Screenshot Right.png -------------------------------------------------------------------------------- /Screenshots/Screenshot Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/Screenshot Top.png -------------------------------------------------------------------------------- /Screenshots/bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/bounce.gif -------------------------------------------------------------------------------- /Screenshots/fling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/fling.gif -------------------------------------------------------------------------------- /Screenshots/open-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/open-close.gif -------------------------------------------------------------------------------- /Screenshots/replace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichoracek/MSDynamicsDrawerViewController/HEAD/Screenshots/replace.gif --------------------------------------------------------------------------------