63 lines
1.6 KiB
Swift
63 lines
1.6 KiB
Swift
//
|
|
// HomeSearchRecordVC.swift
|
|
// yinmeng-ios
|
|
//
|
|
// Created by duoban on 2024/4/3.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class HomeSearchRecordVC: BaseViewController,HiddenNavigationBarProtocol {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
setUILayout()
|
|
requestData()
|
|
registerCell()
|
|
}
|
|
private func setUILayout(){
|
|
|
|
}
|
|
private func requestData(){
|
|
|
|
}
|
|
private func registerCell(){
|
|
|
|
}
|
|
//MARK: - 懒加载
|
|
private lazy var stackView:UIStackView = {
|
|
let _stackView = UIStackView()
|
|
_stackView.axis = .vertical
|
|
_stackView.distribution = .fill
|
|
_stackView.alignment = .fill
|
|
_stackView.alignment = .center
|
|
_stackView.spacing = 0
|
|
return _stackView
|
|
}()
|
|
private lazy var bgView:UIView = {
|
|
let _bgView = UIView()
|
|
_bgView.isHidden = true
|
|
return _bgView
|
|
}()
|
|
private lazy var textVeiw:UILabel = {
|
|
let _textVeiw = UILabel.getCustomLabel(text: "大家都在搜",font: UIFont.getScaleFont(ofSize: 14, weight: .bold),color: ThemeColor(hexStr: "#282828"))
|
|
|
|
return _textVeiw
|
|
}()
|
|
// private lazy var <#view#>:<#view#> = {
|
|
// let _<#view#> = <#view#>
|
|
//
|
|
// return _<#view#>
|
|
// }()
|
|
/*
|
|
// 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.
|
|
}
|
|
*/
|
|
|
|
}
|