增加房间

This commit is contained in:
liyuhua
2024-03-07 16:56:48 +08:00
parent 3783cc5c95
commit bfee907f9e
45 changed files with 1191 additions and 29 deletions

View File

@@ -0,0 +1,30 @@
//
// 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
}()
}