20 lines
467 B
Swift
20 lines
467 B
Swift
//
|
|
// UICommonSetup.swift
|
|
// Crush
|
|
//
|
|
// Created by Leon on 2025/9/14.
|
|
//
|
|
|
|
class UICommonSetup{
|
|
|
|
static func setupCLStyle(){
|
|
//Textfield等输入框的统一光标颜色
|
|
UITextField.appearance().tintColor = .c.cpn
|
|
UITextView.appearance().tintColor = .c.cpn
|
|
|
|
// UISwitch的填满色
|
|
UISwitch.appearance().onTintColor = .c.cpn//UIColor.systemBlue
|
|
//UISwitch.appearance().thumbTintColor = UIColor.white
|
|
}
|
|
}
|