├── DMPagerViewController.podspec ├── Example ├── DMPagerViewController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── DMPagerViewController-Example.xcscheme │ └── xcuserdata │ │ └── daniele.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── DMPagerViewController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── daniele.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── DMPagerViewController │ ├── DMAppDelegate.h │ ├── DMAppDelegate.m │ ├── DMPagerViewController-Info.plist │ ├── DMPagerViewController-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage-2.launchimage │ │ │ └── Contents.json │ │ ├── chat_full.imageset │ │ │ ├── Contents.json │ │ │ ├── chat_full.png │ │ │ └── chat_full@2x.png │ │ ├── gear.imageset │ │ │ ├── Contents.json │ │ │ ├── gear.png │ │ │ └── gear@2x.png │ │ └── rchat.imageset │ │ │ ├── Contents.json │ │ │ ├── rchat.png │ │ │ └── rchat@2x.png │ ├── LaunchScreen.xib │ ├── TestViewController.h │ ├── TestViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Demo.gif ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── DMPagerViewController │ │ │ │ ├── DMPagerNavigationBar.h │ │ │ │ └── DMPagerViewController.h │ │ └── Public │ │ │ └── DMPagerViewController │ │ │ ├── DMPagerNavigationBar.h │ │ │ └── DMPagerViewController.h │ ├── Local Podspecs │ │ └── DMPagerViewController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── daniele.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Pods-DMPagerViewController-DMPagerViewController-DMPagerViewController.xcscheme │ │ │ ├── Pods-DMPagerViewController-DMPagerViewController.xcscheme │ │ │ ├── Pods-DMPagerViewController.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Pods-DMPagerViewController-DMPagerViewController │ │ ├── Pods-DMPagerViewController-DMPagerViewController-Private.xcconfig │ │ ├── Pods-DMPagerViewController-DMPagerViewController-dummy.m │ │ ├── Pods-DMPagerViewController-DMPagerViewController-prefix.pch │ │ └── Pods-DMPagerViewController-DMPagerViewController.xcconfig │ │ └── Pods-DMPagerViewController │ │ ├── Pods-DMPagerViewController-acknowledgements.markdown │ │ ├── Pods-DMPagerViewController-acknowledgements.plist │ │ ├── Pods-DMPagerViewController-dummy.m │ │ ├── Pods-DMPagerViewController-environment.h │ │ ├── Pods-DMPagerViewController-resources.sh │ │ ├── Pods-DMPagerViewController.debug.xcconfig │ │ └── Pods-DMPagerViewController.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── DMPagerNavigationBar.h │ ├── DMPagerNavigationBar.m │ ├── DMPagerViewController.h │ └── DMPagerViewController.m └── README.md /DMPagerViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/DMPagerViewController.podspec -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcodeproj/xcshareddata/xcschemes/DMPagerViewController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcodeproj/xcshareddata/xcschemes/DMPagerViewController-Example.xcscheme -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DMPagerViewController.xcworkspace/xcuserdata/daniele.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController.xcworkspace/xcuserdata/daniele.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/DMPagerViewController/DMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/DMAppDelegate.h -------------------------------------------------------------------------------- /Example/DMPagerViewController/DMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/DMAppDelegate.m -------------------------------------------------------------------------------- /Example/DMPagerViewController/DMPagerViewController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/DMPagerViewController-Info.plist -------------------------------------------------------------------------------- /Example/DMPagerViewController/DMPagerViewController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/DMPagerViewController-Prefix.pch -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/LaunchImage-2.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/LaunchImage-2.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/chat_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/chat_full.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/chat_full.imageset/chat_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/chat_full.imageset/chat_full.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/chat_full.imageset/chat_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/chat_full.imageset/chat_full@2x.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/gear.imageset/gear.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/gear.imageset/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/gear.imageset/gear@2x.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/rchat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/rchat.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/rchat.imageset/rchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/rchat.imageset/rchat.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/Images.xcassets/rchat.imageset/rchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/Images.xcassets/rchat.imageset/rchat@2x.png -------------------------------------------------------------------------------- /Example/DMPagerViewController/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/DMPagerViewController/TestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/TestViewController.h -------------------------------------------------------------------------------- /Example/DMPagerViewController/TestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/TestViewController.m -------------------------------------------------------------------------------- /Example/DMPagerViewController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/DMPagerViewController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/DMPagerViewController/main.m -------------------------------------------------------------------------------- /Example/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Demo.gif -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DMPagerViewController/DMPagerNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DMPagerNavigationBar.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DMPagerViewController/DMPagerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DMPagerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DMPagerViewController/DMPagerNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DMPagerNavigationBar.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DMPagerViewController/DMPagerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DMPagerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DMPagerViewController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Local Podspecs/DMPagerViewController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController-DMPagerViewController-DMPagerViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController-DMPagerViewController-DMPagerViewController.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController-DMPagerViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController-DMPagerViewController.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/Pods-DMPagerViewController.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/daniele.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController-DMPagerViewController/Pods-DMPagerViewController-DMPagerViewController.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Pods/Target Support Files/Pods-DMPagerViewController/Pods-DMPagerViewController.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/DMPagerNavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Pod/Classes/DMPagerNavigationBar.h -------------------------------------------------------------------------------- /Pod/Classes/DMPagerNavigationBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Pod/Classes/DMPagerNavigationBar.m -------------------------------------------------------------------------------- /Pod/Classes/DMPagerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Pod/Classes/DMPagerViewController.h -------------------------------------------------------------------------------- /Pod/Classes/DMPagerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/Pod/Classes/DMPagerViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcommac/DMPagerViewController/HEAD/README.md --------------------------------------------------------------------------------