NotificationViewController.swift 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // NotificationViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 16/01/23.
  6. //
  7. import UIKit
  8. class NotificationViewController: UIViewController {
  9. @IBOutlet var navigationBar: UINavigationBar!
  10. @IBOutlet var notificationTableView: UITableView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do any additional setup after loading the view.
  14. notificationTableView.delegate = self
  15. notificationTableView.dataSource = self
  16. }
  17. /*
  18. // MARK: - Navigation
  19. // In a storyboard-based application, you will often want to do a little preparation before navigation
  20. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  21. // Get the new view controller using segue.destination.
  22. // Pass the selected object to the new view controller.
  23. }
  24. */
  25. }
  26. extension NotificationViewController: UITableViewDelegate, UITableViewDataSource {
  27. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  28. return 1
  29. }
  30. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  31. guard let cell = tableView.dequeueReusableCell(withIdentifier: "NotificationTableViewCell", for: indexPath) as? NotificationTableViewCell else {
  32. return UITableViewCell()
  33. }
  34. cell.customView.layer.cornerRadius = 10
  35. cell.messageLabel.text = "Test notification."
  36. return cell
  37. }
  38. }