AnalysisMoreViewCell.swift 549 Bytes
//
//  AnalysisMoreViewCell.swift
//  SwiftWarplyFramework
//
//  Created by Manos Chorianopoulos on 21/9/22.
//

import UIKit

@objc public class AnalysisMoreViewCell: UITableViewCell {
    @IBOutlet weak var titleLabel: UILabel!
    
    // lifecycle
    public override func awakeFromNib() {
        super.awakeFromNib()
        
        // title
        titleLabel.font = UIFont(name: "PFSquareSansPro-Medium", size: 16)
        titleLabel.textColor = UIColor(rgb: 0x415564)
        titleLabel.text = "Δες Περισσότερα"
    }    
}