私は1つのtableViewを持っています。私はカスタムセルを作成しています。今私は画像に示されているのと全く同じ効果を達成したいと思います。セレクションと他のものを使ってたくさん試しましたが、私は成功しません。テーブルビュー行のテキストとイメージの色を変更する
私はのbackgroundColor、FONTCOLORとIMAGECOLORを変更したいです。どうすればこれを達成できますか?これは私のUITableViewCellのコードです。
import UIKit
public class BaseTableViewCell : UITableViewCell {
class var identifier: String { return String.className(self) }
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func awakeFromNib() {
self.selectionStyle = UITableViewCellSelectionStyle.Gray
}
public class func height() -> CGFloat {
return 40
}
public func setData(data: Any?, image : String!, alignment: NSTextAlignment!, font: UIColor) {
self.textLabel?.font = UIFont(name: "Montserrat-Light", size: 12)
self.textLabel?.textAlignment = alignment
self.textLabel?.textColor = font
if let menuText = data as? String {
self.textLabel?.text = menuText
}
self.imageView?.image = UIImage(named: image)
}
override public func setHighlighted(highlighted: Bool, animated: Bool) {
if highlighted {
} else {
self.alpha = 1.0
}
}
// ignore the default handling
override public func setSelected(selected: Bool, animated: Bool) {
}
}
ありがとうございます。
このセルをタップすると、そのように変化するはずです....これはあなたの質問です –
雅h。それはそのように変わるはずです。 @ Uday.M –