fix
无故事王国
2024-06-14 e2c245035a515bb7f623706b66f05e8dfc2c2fef
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 = Config.ThemeColor
    }
}