Completed Report Module
This commit is contained in:
@@ -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
|
||||
|
||||
40
WOKA/Home/Controller/MyListViewAllVC.swift
Normal file
40
WOKA/Home/Controller/MyListViewAllVC.swift
Normal 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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user