Completed Report Module

This commit is contained in:
2024-08-08 18:47:13 +05:30
parent 0348f07230
commit 08bf5514e2
29 changed files with 1216 additions and 117 deletions

View File

@@ -31,6 +31,8 @@ class MyListVC: UIViewController{
@IBOutlet weak var guestLoginView: UIView!
@IBOutlet weak var guestLoginStack: UIStackView!
@IBOutlet weak var karaokeViewBtn: LocalisedElementsButton!
var vm = MyListVM()
deinit{
@@ -93,6 +95,9 @@ class MyListVC: UIViewController{
@IBAction func freeSignIn(_ sender: LocalisedElementsButton) {
UIApplication.setRootView(LoginNavVC.instantiate(from: .AuthenticationSB))
}
@IBAction func viewAllBtnTapped(_ sender: UIButton) {
}
}
// MARK: - CollectionView Delegate

View File

@@ -0,0 +1,40 @@
//
// MyListViewAllVC.swift
// WOKA
//
// Created by MacBook Pro on 08/08/24.
//
import UIKit
class MyListViewAllVC: UIViewController {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
setupCell()
}
func setupCell(){
tableView.register(UINib(nibName: K.CellIdentifier.Home.myListViewAllCell, bundle: nil), forCellReuseIdentifier: K.CellIdentifier.Home.myListViewAllCell)
tableView.delegate = self
tableView.dataSource = self
}
}
// MARK: - TableView DataSource , Delegates
extension MyListViewAllVC : TableViewSRC{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: K.CellIdentifier.Home.myListViewAllCell) as! MyListViewAllCell
return cell
}
}