diff --git a/README.md b/README.md index e0771b7..03bfd9b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ It hides a complexity of `UITableViewDataSource` and `UITableViewDelegate` metho ## Getting Started -An example app is included demonstrating TableKit's functionality. +An [example app](Demo) is included demonstrating TableKit's functionality. #### Basic usage @@ -89,7 +89,7 @@ let row = TableRow(item: "some") return false }) ``` -You could find all available actions here. +You could find all available actions [here](Sources/TableRowAction.swift). #### Batch rows You could have a situation when you need a lot of cells with the same type. In that case it's better to use `TableRowBuilder`: @@ -128,7 +128,7 @@ It's enough for most cases. But you may be not happy with this. So you could use ```swift tableDirector.shouldUsePrototypeCellHeightCalculation = true ``` -It does all dirty work with prototypes for you behind the scene, so you don't have to worry about anything except of your cell configuration: +It does all dirty work with prototypes for you [behind the scene](Sources/HeightStrategy.swift), so you don't have to worry about anything except of your cell configuration: ```swift class ImageTableViewCell: UITableViewCell, ConfigurableCell {