23 lines
374 B
Swift
23 lines
374 B
Swift
//
|
|
// FriendsRootHomeView.swift
|
|
// Crush
|
|
//
|
|
// Created by Leon on 2025/7/22.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class FriendsRootHomeView: UIView {
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
setupViews()
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
private func setupViews() {
|
|
}
|
|
}
|