25 lines
386 B
Swift
25 lines
386 B
Swift
//
|
|
// CLLine.swift
|
|
// Crush
|
|
//
|
|
// Created by Leon on 2025/8/17.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class CLLine: UIView {
|
|
convenience init() {
|
|
self.init(frame: .zero)
|
|
}
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
backgroundColor = .c.con
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
}
|