31 lines
664 B
Swift
31 lines
664 B
Swift
//
|
|
// RoomVC.swift
|
|
// yinmeng-ios
|
|
//
|
|
// Created by duoban on 2024/3/6.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class RoomVC: BaseViewController, HiddenNavigationBarProtocol {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
setUILayout()
|
|
}
|
|
private func setUILayout(){
|
|
view.addSubview(backgroundView)
|
|
backgroundView.snp.makeConstraints { make in
|
|
make.edges.equalTo(self.view)
|
|
}
|
|
}
|
|
private func requestData(){
|
|
|
|
}
|
|
//MARK: - 懒加载
|
|
private lazy var backgroundView:RoomBackgroundView = {
|
|
let _backgroundView = RoomBackgroundView(frame: .zero)
|
|
return _backgroundView
|
|
}()
|
|
}
|