Вместо использования универсального UIView
в ячейке, создайте подкласс его в новый класс, который инкапсулирует типы отображаемых значков.Рассмотрим этот пример:
UIView
подкласс, который инкапсулирует логику значков вокруг PaintCode.Обратите внимание на перечисление Option
и свойство @IBDesignable
(допускает рендеринг в реальном времени в Interface Builder
):
import UIKit
@IBDesignable class OptionsView: UIView {
// MARK: - Properties
// Allowed options.
enum Option {
case star, tree
}
// Option that should currently be displayed. Default is .star (for no particular reason).
var currentOption: Option = .star {
didSet {
setNeedsDisplay() // Force redrawing.
}
}
// MARK: - Lifecycle
override func draw(_ rect: CGRect) {
drawIcon(rect)
}
}
// MARK: - Private
private extension OptionsView {
/// Logic to decide which icon to display.
func drawIcon(_ rect: CGRect) {
switch currentOption {
case .star:
StyleKit.drawStarIcon(frame: rect)
case .tree:
StyleKit.drawTreeIcon(frame: rect)
}
}
}
Конфигурация раскадровки: пользовательская UITableViewController
+ пользовательская UITableViewCell
с пользовательской UIView
(обратите внимание на атрибут class
типа OptionsView
):
Подключите UILabel
и OptionsView
к вашему CustomCell
.Пример реализации (обратите внимание на var option
):
import UIKit
class CustomCell: UITableViewCell {
// MARK: - Public Properties
// Option that should currently be displayed. Default is .star (for no particular reason).
var option: OptionsView.Option = .star {
didSet {
iconView.currentOption = option
updateLabelText()
}
}
// MARK: - Private Properties
@IBOutlet private weak var iconView: OptionsView!
@IBOutlet private weak var label: UILabel!
}
// MARK: - Private
private extension CustomCell {
func updateLabelText() {
switch option {
case .star:
label.text = "Star"
case .tree:
label.text = "Tree"
}
}
}
Наконец, в вашем пользовательском UITableViewController
:
import UIKit
class TableViewController: UITableViewController {
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
return 1 // Hardcoded in this example.
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 40 // Hardcoded in this example.
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let customCell = tableView.dequeueReusableCell(withIdentifier: "customCell", for: indexPath) as? CustomCell {
// Logic around which option to display
if indexPath.row < 20 {
customCell.option = .star
} else {
customCell.option = .tree
}
return customCell
}
// Fallback.
return UITableViewCell()
}
}
Окончательный результат:
См. Этот проект для всего кода (шестой тест):
https://github.com/backslash-f/paintcode-tests