Add set(appearance:) method to TableRow

This commit is contained in:
Anton Popkov 2017-10-12 23:18:51 +03:00
parent 26ebaa48e9
commit fa2838bb9c
1 changed files with 4 additions and 0 deletions

View File

@ -39,4 +39,8 @@ public extension TableRow where CellType: AppearanceProtocol {
return self
}
func set(appearance: CellType.Appearance) {
_ = with(appearance: appearance)
}
}