├── CollectionViewPagingExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── Jin-TaeWoo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Jin-TaeWoo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── CollectionViewPagingExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CollectionViewCell.swift ├── Info.plist ├── Supporting Files │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Info.plist └── ViewController.swift ├── CollectionViewPagingExampleUITests ├── CollectionViewPagingExampleUITests.swift └── Info.plist └── README.md /CollectionViewPagingExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewPagingExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewPagingExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CollectionViewPagingExample.xcodeproj/project.xcworkspace/xcuserdata/Jin-TaeWoo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/project.xcworkspace/xcuserdata/Jin-TaeWoo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CollectionViewPagingExample.xcodeproj/xcuserdata/Jin-TaeWoo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/xcuserdata/Jin-TaeWoo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CollectionViewPagingExample.xcodeproj/xcuserdata/Jin-TaeWoo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample.xcodeproj/xcuserdata/Jin-TaeWoo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CollectionViewPagingExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionViewPagingExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewPagingExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionViewPagingExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionViewPagingExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewPagingExample/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/CollectionViewCell.swift -------------------------------------------------------------------------------- /CollectionViewPagingExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Info.plist -------------------------------------------------------------------------------- /CollectionViewPagingExample/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewPagingExample/Supporting Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Supporting Files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionViewPagingExample/Supporting Files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Supporting Files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionViewPagingExample/Supporting Files/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Supporting Files/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewPagingExample/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/Supporting Files/Info.plist -------------------------------------------------------------------------------- /CollectionViewPagingExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExample/ViewController.swift -------------------------------------------------------------------------------- /CollectionViewPagingExampleUITests/CollectionViewPagingExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExampleUITests/CollectionViewPagingExampleUITests.swift -------------------------------------------------------------------------------- /CollectionViewPagingExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taewoojin/CollectionViewPagingExample/HEAD/CollectionViewPagingExampleUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CollectionViewPagingExample 2 | --------------------------------------------------------------------------------