ProfileQuestionnaireTableViewCell.swift
744 Bytes
//
// ProfileQuestionnaireTableViewCell.swift
// SwiftWarplyFramework
//
// Created by Manos Chorianopoulos on 29/5/25.
//
import UIKit
@objc(ProfileQuestionnaireTableViewCell)
public class ProfileQuestionnaireTableViewCell: UITableViewCell {
@IBOutlet weak var questionnaireBannerImage: UIImageView!
public override func awakeFromNib() {
super.awakeFromNib()
questionnaireBannerImage.image = UIImage(named: "questionnaire_banner", in: Bundle.frameworkResourceBundle, compatibleWith: nil)
}
public override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}