// // NotificationViewController.swift // LMS // // Created by Suraj Kumar Mandal on 16/01/23. // import UIKit class NotificationViewController: UIViewController { @IBOutlet var navigationBar: UINavigationBar! @IBOutlet var notificationTableView: UITableView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. notificationTableView.delegate = self notificationTableView.dataSource = self } /* // MARK: - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation override func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Get the new view controller using segue.destination. // Pass the selected object to the new view controller. } */ } extension NotificationViewController: UITableViewDelegate, UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 1 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { guard let cell = tableView.dequeueReusableCell(withIdentifier: "NotificationTableViewCell", for: indexPath) as? NotificationTableViewCell else { return UITableViewCell() } cell.customView.layer.cornerRadius = 10 cell.messageLabel.text = "Test notification." return cell } }