Visual_Novel_iOS/crush/Crush/Src/Components/UI/BaseView/CLContainer.swift

32 lines
725 B
Swift
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// CLContainer.swift
// Crush
//
// Created by Leon on 2025/7/18.
//
import UIKit
class CLContainer : UIView{
/// init(frame: CGRect)使
var navigationView: NavigationView?
// convenience init(navi: NavigationView){
// navigationView = navi
// self.init(frame: .zero)
// }
override init(frame: CGRect) {
super.init(frame: frame)
}
// convenience init(navigationView: NavigationView) {
// self.init(frame: .zero) // designated initializer
// self.navigationView = navigationView
// }
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}