Broken link to full 'LabelSectionController.swift'

Summary:
- [ ] All tests pass. Demo project builds and runs.
- [ ] I added tests, an experiment, or detailed why my change isn't tested.
- [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md)

Replaced with direct link in repo
Closes https://github.com/Instagram/IGListKit/pull/254

Differential Revision: D4231946

Pulled By: rnystrom

fbshipit-source-id: 75635e12cd8f4f047d8afc0d6dd6008136bd5d26
This commit is contained in:
LinkThrow 2016-11-24 10:15:10 -08:00 committed by Facebook Github Bot
parent ca15e29cf1
commit 552053a5da

View file

@ -10,7 +10,7 @@ After installing `IGListKit`, creating a new list is easy.
Creating a new section controller is simple. You subclass `IGListSectionController` and conform to the `IGListSectionType` protocol. Once you conform to `IGListSectionType`, the compiler will make sure you implement all of the required methods.
Take a look at [LabelSectionController](Examples/Examples-iOS/IGListKitExamples/SectionControllers/LabelSectionController.swift) for an example section controller that handles a `String` and configures a single cell with a `UILabel`.
Take a look at [LabelSectionController](https://raw.githubusercontent.com/Instagram/IGListKit/master/Examples/Examples-iOS/IGListKitExamples/SectionControllers/LabelSectionController.swift) for an example section controller that handles a `String` and configures a single cell with a `UILabel`.
```swift
class LabelSectionController: IGListSectionController, IGListSectionType {