增加房间
This commit is contained in:
30
yinmeng-ios/Modules/Room/VC/RoomVC.swift
Normal file
30
yinmeng-ios/Modules/Room/VC/RoomVC.swift
Normal 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
|
||||
}()
|
||||
}
|
Reference in New Issue
Block a user