├── .gitignore ├── LICENSE ├── LazyPageScrollView.podspec ├── LazyPageScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── sunxin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LazyPageScrollView.xcscheme │ └── xcschememanagement.plist ├── LazyPageScrollView ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ChildFirstViewController.h ├── ChildFirstViewController.m ├── ChildFirstViewController.xib ├── ChildSecondViewController.h ├── ChildSecondViewController.m ├── ChildSecondViewController.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LazyPageScrollView │ ├── LazyPageScrollView.h │ └── LazyPageScrollView.m ├── ViewController.h ├── ViewController.m └── main.m ├── LazyPageScrollViewTests ├── Info.plist └── LazyPageScrollViewTests.m ├── README.md └── Resource ├── 1.gif └── 2.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /LazyPageScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.podspec -------------------------------------------------------------------------------- /LazyPageScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LazyPageScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcschemes/LazyPageScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcschemes/LazyPageScrollView.xcscheme -------------------------------------------------------------------------------- /LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView.xcodeproj/xcuserdata/sunxin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LazyPageScrollView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/AppDelegate.h -------------------------------------------------------------------------------- /LazyPageScrollView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/AppDelegate.m -------------------------------------------------------------------------------- /LazyPageScrollView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LazyPageScrollView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LazyPageScrollView/ChildFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildFirstViewController.h -------------------------------------------------------------------------------- /LazyPageScrollView/ChildFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildFirstViewController.m -------------------------------------------------------------------------------- /LazyPageScrollView/ChildFirstViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildFirstViewController.xib -------------------------------------------------------------------------------- /LazyPageScrollView/ChildSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildSecondViewController.h -------------------------------------------------------------------------------- /LazyPageScrollView/ChildSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildSecondViewController.m -------------------------------------------------------------------------------- /LazyPageScrollView/ChildSecondViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ChildSecondViewController.xib -------------------------------------------------------------------------------- /LazyPageScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LazyPageScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/Info.plist -------------------------------------------------------------------------------- /LazyPageScrollView/LazyPageScrollView/LazyPageScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/LazyPageScrollView/LazyPageScrollView.h -------------------------------------------------------------------------------- /LazyPageScrollView/LazyPageScrollView/LazyPageScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/LazyPageScrollView/LazyPageScrollView.m -------------------------------------------------------------------------------- /LazyPageScrollView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ViewController.h -------------------------------------------------------------------------------- /LazyPageScrollView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/ViewController.m -------------------------------------------------------------------------------- /LazyPageScrollView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollView/main.m -------------------------------------------------------------------------------- /LazyPageScrollViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollViewTests/Info.plist -------------------------------------------------------------------------------- /LazyPageScrollViewTests/LazyPageScrollViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/LazyPageScrollViewTests/LazyPageScrollViewTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/README.md -------------------------------------------------------------------------------- /Resource/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/Resource/1.gif -------------------------------------------------------------------------------- /Resource/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx1989827/LazyPageScrollView/HEAD/Resource/2.gif --------------------------------------------------------------------------------