From fa2838bb9cab5adb22fb3ac2d8dd4a6befcc8cb8 Mon Sep 17 00:00:00 2001 From: Anton Popkov Date: Thu, 12 Oct 2017 23:18:51 +0300 Subject: [PATCH] Add set(appearance:) method to TableRow --- .../TableDirector/TableRow+AppearanceExtension.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/Extensions/TableDirector/TableRow+AppearanceExtension.swift b/Sources/Extensions/TableDirector/TableRow+AppearanceExtension.swift index 61da42e3..60a05177 100644 --- a/Sources/Extensions/TableDirector/TableRow+AppearanceExtension.swift +++ b/Sources/Extensions/TableDirector/TableRow+AppearanceExtension.swift @@ -39,4 +39,8 @@ public extension TableRow where CellType: AppearanceProtocol { return self } + func set(appearance: CellType.Appearance) { + _ = with(appearance: appearance) + } + }