杨锴
2025-05-11 7453d2d0cef415b34323d1b91e6cfa4a6ba31178
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  BaseTabBarVC.swift
//  WanPai
//
//  Created by 杨锴 on 2023/6/8.
//
 
import UIKit
 
class BaseTabBarVC: UITabBarController {
 
    override func viewDidLoad() {
        super.viewDidLoad()
 
        tabBar.backgroundColor = .white
        tabBar.tintColor = Def_ThemeColor
    }
}