younger_times
2023-04-25 4c5d82210f610d71878aa19c73413b40b3313207
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
//  PersonalWalletVC.swift
//  BrokerDriver
//
//  Created by 无故事王国 on 2023/4/25.
//
 
import UIKit
 
class PersonalWalletVC: BaseViewController {
 
    @IBOutlet weak var label_account: UILabel!
    @IBOutlet weak var tableView: UITableView!
    override func viewDidLoad() {
        super.viewDidLoad()
        title = "Wallet"
 
    }
 
    override func setUI() {
        super.setUI()
 
        tableView.delegate = self
        tableView.dataSource = self
        tableView.separatorStyle = .none
        tableView.register(UINib(nibName: "WalletTCell", bundle: nil), forCellReuseIdentifier: "_WalletTCell")
 
        label_account.font = UIFont(name: "Impact", size: 36)
        label_account.text = 1.currency()
    }
}
 
extension PersonalWalletVC:UITableViewDelegate{
 
}
 
extension PersonalWalletVC:UITableViewDataSource{
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
       let cell = tableView.dequeueReusableCell(withIdentifier: "_WalletTCell") as! WalletTCell
        return cell
    }
 
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }
}