You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,10 @@ This library reduces the boilerplate code regarding the `UITableView`, `UICollec
11
11
12
12
## Requirements
13
13
14
+
* Xcode 9+
15
+
* Swift 4.0+
14
16
* iOS 9.0+
15
17
* tvOS 10.0+
16
-
* Swift 4.0+
17
-
* Xcode 9+
18
18
19
19
## Installation
20
20
@@ -54,13 +54,13 @@ $ open index.html -a Safari
54
54
55
55
## Getting Started
56
56
57
-
Watch [my talk](https://www.skilled.io/u/swiftsummit/pushing-the-limits-of-protocol-oriented-programming) from [Swift Summit](https://swiftsummit.com). ([slides](https://speakerdeck.com/jessesquires/pushing-the-limits-of-protocol-oriented-programming))
57
+
Watch [my talk](https://www.skilled.io/u/swiftsummit/pushing-the-limits-of-protocol-oriented-programming) from [Swift Summit](https://swiftsummit.com). See the [slides here](https://speakerdeck.com/jessesquires/pushing-the-limits-of-protocol-oriented-programming).
58
58
59
59
````swift
60
60
importJSQDataSourcesKit
61
61
````
62
62
63
-
####Design
63
+
### Design
64
64
65
65
This library has four primary components:
66
66
@@ -69,7 +69,7 @@ This library has four primary components:
69
69
3.`ReusableViewFactory` — responsible for dequeuing and configuring cells (for `UITableView` or `UICollectionView`)
70
70
4.`DataSourceProvider` — owns a data source and cell factory, and provides a `UICollectionViewDataSource` or `UITableViewDataSource` object.
71
71
72
-
####Example
72
+
### Example
73
73
74
74
The following illustrates a simple example of how these components interact for a collection view.
75
75
@@ -104,7 +104,7 @@ let dataSourceProvider = DataSourceProvider(dataSource: dataSource,
0 commit comments