1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // TrueFalseTableViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 28/09/22.
- //
- import UIKit
- class TrueFalseTableViewCell: UITableViewCell {
- @IBOutlet var customView: UIView!
- @IBOutlet var selectButton: UIButton!
- @IBOutlet var optionLabel: UILabel!
-
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- }
- override func setSelected(_ selected: Bool, animated: Bool) {
- super.setSelected(selected, animated: animated)
-
- // Configure the view for the selected state
- if selected {
- self.selectButton.setImage(UIImage(systemName: "circle.inset.filled"), for: .normal)
- } else {
- self.selectButton.setImage(UIImage(systemName: "circle"), for: .normal)
- }
- }
-
- override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
- super.init(style: style, reuseIdentifier: reuseIdentifier)
- self.selectionStyle = .none
- }
-
- required init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- }
- }
|