Skip to content
This repository was archived by the owner on Apr 30, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Each flag is represented by a class (the model) called `CountryModel`; the insta
```swift
let countries: [CountryModel] = ... // your array of countries
let rows = Row<CountryCell>.create(countries, { row in // create rows
row.onTap = { _, path in // reponds to tap on cells
row.onTap = { _, path in // responds to tap on cells
print("Tap on '\(row.item.name)'")
return nil
}
Expand Down