30 lines
595 B
Swift
30 lines
595 B
Swift
![]() |
//
|
||
|
// ChatVC.swift
|
||
|
// yinmeng-ios
|
||
|
//
|
||
|
// Created by MaiMang on 2024/2/25.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class ChatVC: BaseViewController {
|
||
|
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
|
||
|
view.backgroundColor = .orange
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
// MARK: - Navigation
|
||
|
|
||
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||
|
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
||
|
// Get the new view controller using segue.destination.
|
||
|
// Pass the selected object to the new view controller.
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
}
|