├── Classes ├── MMParallaxPage.h ├── MMParallaxPage.m ├── MMParallaxPresenter.h └── MMParallaxPresenter.m ├── LICENSE ├── MMParallaxPresenter.podspec ├── MMParallaxPresenterExample ├── MMParallaxScrollPresenter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── MMParallaxScrollPresenter.xccheckout │ │ └── xcuserdata │ │ │ └── mmalleo.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── mmalleo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── MMParallaxScrollPresenter.xcscheme │ │ └── xcschememanagement.plist ├── MMParallaxScrollPresenter │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── MainViewController.h │ ├── MainViewController.m │ ├── MainViewController.xib │ ├── PageViewController.h │ ├── PageViewController.m │ ├── PageViewController.xib │ ├── dock.jpg │ ├── forest.jpg │ ├── icon.png │ ├── main.m │ ├── mountains.jpg │ └── stars.jpeg └── MMParallaxScrollPresenterTests │ ├── Info.plist │ └── MMParallaxScrollPresenterTests.m ├── README.md └── mmParallaxPresenter.gif /Classes/MMParallaxPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/Classes/MMParallaxPage.h -------------------------------------------------------------------------------- /Classes/MMParallaxPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/Classes/MMParallaxPage.m -------------------------------------------------------------------------------- /Classes/MMParallaxPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/Classes/MMParallaxPresenter.h -------------------------------------------------------------------------------- /Classes/MMParallaxPresenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/Classes/MMParallaxPresenter.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/LICENSE -------------------------------------------------------------------------------- /MMParallaxPresenter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenter.podspec -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcshareddata/MMParallaxScrollPresenter.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcshareddata/MMParallaxScrollPresenter.xccheckout -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcuserdata/mmalleo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcuserdata/mmalleo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcuserdata/mmalleo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/project.xcworkspace/xcuserdata/mmalleo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcschemes/MMParallaxScrollPresenter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcschemes/MMParallaxScrollPresenter.xcscheme -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter.xcodeproj/xcuserdata/mmalleo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/AppDelegate.h -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/AppDelegate.m -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/Info.plist -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.h -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.m -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/MainViewController.xib -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.h -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.m -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/PageViewController.xib -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/dock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/dock.jpg -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/forest.jpg -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/icon.png -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/main.m -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/mountains.jpg -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenter/stars.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenter/stars.jpeg -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenterTests/Info.plist -------------------------------------------------------------------------------- /MMParallaxPresenterExample/MMParallaxScrollPresenterTests/MMParallaxScrollPresenterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/MMParallaxPresenterExample/MMParallaxScrollPresenterTests/MMParallaxScrollPresenterTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/README.md -------------------------------------------------------------------------------- /mmParallaxPresenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchellMalleo/MMParallaxPresenter/HEAD/mmParallaxPresenter.gif --------------------------------------------------------------------------------