25 lines
449 B
Swift
25 lines
449 B
Swift
//
|
|
// SPDeleteAccountTextView.swift
|
|
// MoviaBox
|
|
//
|
|
// Created by 佳尔 on 2025/5/12.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SPDeleteAccountTextView: UIView {
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
backgroundColor = .color272A30()
|
|
layer.cornerRadius = 8
|
|
layer.masksToBounds = true
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
}
|