You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
441 B

//
// MyDecorationView.swift
// SwiftTest
//
// Created by on 2021/1/28.
// Copyright © 2021 . All rights reserved.
//
import UIKit
class UCCateDecorationView: UICollectionReusableView {
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = UIColor.black
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}