21 lines
533 B
Swift
21 lines
533 B
Swift
//
|
|
// CommonCellAutocomplete.swift
|
|
// Wallet
|
|
//
|
|
// Created by Igor on 10.02.2021.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class CommonCellAutocomplete: UITableViewCell {
|
|
|
|
@IBOutlet private weak var imgView: UIImageView!
|
|
@IBOutlet private weak var titleLbl: UILabel!
|
|
|
|
func adjust(to menu: Common.Model.Menu, isSelected: Bool) {
|
|
imgView.image = menu.image
|
|
titleLbl.attributedText = menu.title.attributed(style: .regular, size: 20, color: isSelected ? Asset.textDeepWater.color : Asset.textCoal.color)
|
|
}
|
|
|
|
}
|