15 lines
234 B
Swift
15 lines
234 B
Swift
|
|
//
|
||
|
|
// CLDatePicker.swift
|
||
|
|
// Crush
|
||
|
|
//
|
||
|
|
// Created by Leon on 2025/7/19.
|
||
|
|
//
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
class CLDatePicker : UIDatePicker{
|
||
|
|
override func layoutSubviews() {
|
||
|
|
super.layoutSubviews()
|
||
|
|
backgroundColor = .clear
|
||
|
|
}
|
||
|
|
}
|