├── ExampleInfiniteScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── masonlamy.xcuserdatad │ └── xcschemes │ ├── ExampleInfiniteScrollView.xcscheme │ └── xcschememanagement.plist ├── ExampleInfiniteScrollView ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ExampleCollectionViewCell.swift ├── ExampleCollectionViewCell.xib ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── cell-1.imageset │ │ ├── Contents.json │ │ └── cell-1.png ├── InfiniteCollectionView.swift ├── Info.plist └── ViewController.swift ├── ExampleInfiniteScrollViewTests └── Info.plist ├── README.md └── license.txt /ExampleInfiniteScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExampleInfiniteScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ExampleInfiniteScrollView.xcodeproj/xcuserdata/masonlamy.xcuserdatad/xcschemes/ExampleInfiniteScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView.xcodeproj/xcuserdata/masonlamy.xcuserdatad/xcschemes/ExampleInfiniteScrollView.xcscheme -------------------------------------------------------------------------------- /ExampleInfiniteScrollView.xcodeproj/xcuserdata/masonlamy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView.xcodeproj/xcuserdata/masonlamy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/AppDelegate.swift -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/ExampleCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/ExampleCollectionViewCell.swift -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/ExampleCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/ExampleCollectionViewCell.xib -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Images.xcassets/cell-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Images.xcassets/cell-1.imageset/Contents.json -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Images.xcassets/cell-1.imageset/cell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Images.xcassets/cell-1.imageset/cell-1.png -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/InfiniteCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/InfiniteCollectionView.swift -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/Info.plist -------------------------------------------------------------------------------- /ExampleInfiniteScrollView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollView/ViewController.swift -------------------------------------------------------------------------------- /ExampleInfiniteScrollViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/ExampleInfiniteScrollViewTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masonlamy/infinite-uicollectionview/HEAD/license.txt --------------------------------------------------------------------------------