Files
raspberry/iOS/Wallet/Sources/Common/Menu/Cell/CommonCellAutocomplete.swift
2022-06-03 16:55:25 +03:00

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)
}
}