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
23 lines
441 B
![]()
1 year ago
|
//
|
||
|
// 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")
|
||
|
}
|
||
|
|
||
|
}
|