├── .gitignore ├── .travis.yml ├── AMSlideOut ├── AMSlideOutGlobals.h ├── AMSlideOutGlobals.m ├── AMSlideOutNavigationController.h ├── AMSlideOutNavigationController.m ├── AMSlideTableCell.h ├── AMSlideTableCell.m ├── AMSlideTableHeader.h ├── AMSlideTableHeader.m ├── AMTableView.h ├── AMTableView.m ├── iconSlide.png ├── iconSlide@2x.png ├── iconSlideBlack.png └── iconSlideBlack@2x.png ├── AMSlideOutController.podspec ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SlideOutSample ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Icon.png ├── Icon@2x.png ├── SlideOutSample.xcodeproj │ ├── .LSOverride │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SlideOutSample.xcscheme └── SlideOutSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CustomCell.h │ ├── CustomCell.m │ ├── CustomHeader.h │ ├── CustomHeader.m │ ├── FirstViewController.h │ ├── FirstViewController.m │ ├── FirstViewController.xib │ ├── Resources │ ├── icon1.png │ ├── icon1b.png │ ├── icon2.png │ └── icon2b.png │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── SecondViewController.xib │ ├── SlideOutSample-Info.plist │ ├── SlideOutSample-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── SlideoutStoryboardSample ├── Icon.png ├── Icon@2x.png ├── SlideoutStoryboardSample.xcodeproj │ └── project.pbxproj └── SlideoutStoryboardSample │ ├── AMAppDelegate.h │ ├── AMAppDelegate.m │ ├── AMViewController.h │ ├── AMViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Resources │ ├── icon1.png │ └── icon2.png │ ├── SlideoutStoryboardSample-Info.plist │ ├── SlideoutStoryboardSample-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ └── main.m └── assets └── demo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/.travis.yml -------------------------------------------------------------------------------- /AMSlideOut/AMSlideOutGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideOutGlobals.h -------------------------------------------------------------------------------- /AMSlideOut/AMSlideOutGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideOutGlobals.m -------------------------------------------------------------------------------- /AMSlideOut/AMSlideOutNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideOutNavigationController.h -------------------------------------------------------------------------------- /AMSlideOut/AMSlideOutNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideOutNavigationController.m -------------------------------------------------------------------------------- /AMSlideOut/AMSlideTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideTableCell.h -------------------------------------------------------------------------------- /AMSlideOut/AMSlideTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideTableCell.m -------------------------------------------------------------------------------- /AMSlideOut/AMSlideTableHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideTableHeader.h -------------------------------------------------------------------------------- /AMSlideOut/AMSlideTableHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMSlideTableHeader.m -------------------------------------------------------------------------------- /AMSlideOut/AMTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMTableView.h -------------------------------------------------------------------------------- /AMSlideOut/AMTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/AMTableView.m -------------------------------------------------------------------------------- /AMSlideOut/iconSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/iconSlide.png -------------------------------------------------------------------------------- /AMSlideOut/iconSlide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/iconSlide@2x.png -------------------------------------------------------------------------------- /AMSlideOut/iconSlideBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/iconSlideBlack.png -------------------------------------------------------------------------------- /AMSlideOut/iconSlideBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOut/iconSlideBlack@2x.png -------------------------------------------------------------------------------- /AMSlideOutController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/AMSlideOutController.podspec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/README.md -------------------------------------------------------------------------------- /SlideOutSample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/Default-568h@2x.png -------------------------------------------------------------------------------- /SlideOutSample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/Default.png -------------------------------------------------------------------------------- /SlideOutSample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/Default@2x.png -------------------------------------------------------------------------------- /SlideOutSample/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/Icon.png -------------------------------------------------------------------------------- /SlideOutSample/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/Icon@2x.png -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample.xcodeproj/.LSOverride: -------------------------------------------------------------------------------- 1 | /Applications/Xcode.app -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample.xcodeproj/xcshareddata/xcschemes/SlideOutSample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample.xcodeproj/xcshareddata/xcschemes/SlideOutSample.xcscheme -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/AppDelegate.h -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/AppDelegate.m -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/CustomCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/CustomCell.h -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/CustomCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/CustomCell.m -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/CustomHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/CustomHeader.h -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/CustomHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/CustomHeader.m -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/FirstViewController.h -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/FirstViewController.m -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/FirstViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/FirstViewController.xib -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/Resources/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/Resources/icon1.png -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/Resources/icon1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/Resources/icon1b.png -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/Resources/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/Resources/icon2.png -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/Resources/icon2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/Resources/icon2b.png -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/SecondViewController.h -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/SecondViewController.m -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/SecondViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/SecondViewController.xib -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/SlideOutSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/SlideOutSample-Info.plist -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/SlideOutSample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/SlideOutSample-Prefix.pch -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SlideOutSample/SlideOutSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideOutSample/SlideOutSample/main.m -------------------------------------------------------------------------------- /SlideoutStoryboardSample/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/Icon.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/Icon@2x.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/AMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/AMAppDelegate.h -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/AMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/AMAppDelegate.m -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/AMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/AMViewController.h -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/AMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/AMViewController.m -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/Default-568h@2x.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/Default.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/Default@2x.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/Resources/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/Resources/icon1.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/Resources/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/Resources/icon2.png -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/SlideoutStoryboardSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/SlideoutStoryboardSample-Info.plist -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/SlideoutStoryboardSample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/SlideoutStoryboardSample-Prefix.pch -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /SlideoutStoryboardSample/SlideoutStoryboardSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/SlideoutStoryboardSample/SlideoutStoryboardSample/main.m -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/SlideOutNavigation/HEAD/assets/demo.png --------------------------------------------------------------------------------