From 8de38d8deeab128917a3f42cc2bf2baaaab5c6d0 Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Sat, 18 Jun 2016 15:44:57 +0300 Subject: [PATCH] update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {