Skip to content

Commit 6da051a

Browse files
committed
Update URLs in README.md
1 parent 8556aef commit 6da051a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ViewController: QuickTableViewController {
4242
Section(title: "Navigation", rows: [
4343
NavigationRow(title: "CellStyle.default", subtitle: .none, icon: .named("gear")),
4444
NavigationRow(title: "CellStyle", subtitle: .belowTitle(".subtitle"), icon: .named("globe")),
45-
NavigationRow(title: "CellStyle", subtitle: .rightAligned(".value1"), icon: .named("time")),
45+
NavigationRow(title: "CellStyle", subtitle: .rightAligned(".value1"), icon: .named("time"), action: { _ in }),
4646
NavigationRow(title: "CellStyle", subtitle: .leftAligned(".value2"))
4747
]),
4848

@@ -175,7 +175,7 @@ let action: (Row) -> Void = {
175175

176176
### Overwrite Default Configuration
177177

178-
You can use `register(_:forCellReuseIdentifier:)` to specify custom cell types for the [table view]((https://github.com/bcylin/QuickTableViewController/blob/develop/Source/QuickTableViewController.swift#L104)) to use. See [CustomizationViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example/ViewControllers/CustomizationViewController.swift) for the cell reuse identifiers of different rows.
178+
You can use `register(_:forCellReuseIdentifier:)` to specify custom cell types for the [table view](https://github.com/bcylin/QuickTableViewController/blob/develop/Source/QuickTableViewController.swift#L100-L102) to use. See [CustomizationViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example-iOS/ViewControllers/CustomizationViewController.swift) for the cell reuse identifiers of different rows.
179179

180180
Table view cell classes that conform to `Configurable` can take the customization during `tableView(_:cellForRowAt:)`:
181181

@@ -197,7 +197,7 @@ The `customize` closure overwrites the `Configurable` setup.
197197

198198
### UIAppearance
199199

200-
As discussed in issue [#12](https://github.com/bcylin/QuickTableViewController/issues/12), UIAppearance customization works when the cell is dequeued from the storyboard. One way to work around this is to register nib objects to the table view. Check out [AppearanceViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example/ViewControllers/AppearanceViewController.swift) for the setup.
200+
As discussed in issue [#12](https://github.com/bcylin/QuickTableViewController/issues/12), UIAppearance customization works when the cell is dequeued from the storyboard. One way to work around this is to register nib objects to the table view. Check out [AppearanceViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example-iOS/ViewControllers/AppearanceViewController.swift) for the setup.
201201

202202
## tvOS Differences
203203

0 commit comments

Comments
 (0)