1234567891011121314151617181920212223242526 |
- //
- // NotificationTableViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 31/01/23.
- //
- import UIKit
- class NotificationTableViewCell: UITableViewCell {
- @IBOutlet var customView: UIView!
- @IBOutlet var messageLabel: 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
- }
- }
|