Summary:  Noticed an issue when trying to build the examples project that I couldn't because of the Swiftlint build phase (see the image above) As it turns out in between the version I have installed (0.16.1) and the latest (0.19.0) they've made it so you can drop `lint` from the command (which is the default task). I see two options really: 1. We add `lint` to the command which at least lets older versions of Swiftlint compile the project without making changes to run phases. It's worth noting that this means that certain (newer) rules won't be detected. 2. We add a way of detecting if they have an older version (likely by comparing the output of `$(swiftlint version)` to the version we know it works on. And display a more appropriate message and not fail the build. Happy to discuss this heshamsalman jessesquires rnystrom Closes https://github.com/Instagram/IGListKit/pull/796 Differential Revision: D5137557 Pulled By: rnystrom fbshipit-source-id: b6c85197d7a66e37976d66b646c9c9241827ce42 |
||
|---|---|---|
| .github | ||
| docs | ||
| Examples | ||
| Guides | ||
| IGListKit.xcodeproj | ||
| IGListKit.xcworkspace | ||
| Pods | ||
| Resources | ||
| scripts | ||
| Source | ||
| Tests | ||
| .gitignore | ||
| .slather.yml | ||
| .travis.yml | ||
| build_docs.sh | ||
| CHANGELOG.md | ||
| Dangerfile | ||
| IGListKit.podspec | ||
| LICENSE.md | ||
| PATENTS.md | ||
| Podfile | ||
| Podfile.lock | ||
| README.md | ||
A data-driven UICollectionView framework for building fast and flexible lists.
| Main Features | |
|---|---|
| 🙅 | Never call performBatchUpdates(_:, completion:) or reloadData() again |
| 🏠 | Better architecture with reusable cells and components |
| 🔠 | Create collections with multiple data types |
| 🔑 | Decoupled diffing algorithm |
| ✅ | Fully unit tested |
| 🔍 | Customize your diffing behavior for your models |
| 📱 | Simply UICollectionView at its core |
| 🚀 | Extendable API |
| 🐦 | Written in Objective-C with full Swift interop support |
IGListKit is built and maintained with ❤️ by Instagram engineering.
We use the open source version master branch in the Instagram app.
Requirements
- Xcode 8.0+
- iOS 8.0+
- tvOS 9.0+
- macOS 10.10+ (diffing algorithm components only)
- Interoperability with Swift 3.0+
Installation
CocoaPods
The preferred installation method is with CocoaPods. Add the following to your Podfile:
pod 'IGListKit', '~> 3.0'
Carthage
For Carthage, add the following to your Cartfile:
github "Instagram/IGListKit" ~> 3.0
For advanced usage, see our Installation Guide.
Getting Started
- Our Getting Started guide
- Ray Wenderlich's IGListKit Tutorial: Better UICollectionViews
- Our example projects
- Ryan Nystrom's talk at try! Swift NYC (Note: this talk was for an earlier version. Some APIs have changed.)
- Migrating an UITableView to IGListCollectionView, by Rodrigo Cavalcante
- Keeping data fresh in Buffer for iOS with AsyncDisplayKit, IGListKit & Pusher, Andy Yates, Buffer
Documentation
You can find the docs here. Documentation is generated with jazzy and hosted on GitHub-Pages.
Vision
For the long term goals and "vision" of IGListKit, please read our Vision doc.
Contributing
Please see the CONTRIBUTING file for how to help. At Instagram we sync the open source version of IGListKit daily, so we're always testing the latest changes. But that requires all changes be thoroughly tested and follow our style guide.
We have a set of starter tasks that are great for beginners to jump in on and start contributing.
License
IGListKit is BSD-licensed. We also provide an additional patent grant.
The files in the /Examples/ directory are licensed under a separate license as specified in each file. Documentation is licensed CC-BY-4.0.