WallPaperHome722/WallpaperHD_Live/Home/V/WP_WallpaperCollectionCell.swift
2024-07-22 15:18:42 +08:00

20 lines
383 B
Swift

//
// WP_WallpaperCollectionCell.swift
// WallpaperHD_Live
//
// Created by 16 on 2024/7/22.
//
import UIKit
class WP_WallpaperCollectionCell: UICollectionViewCell {
@IBOutlet weak var wpImagV: UIImageView!
override func awakeFromNib() {
super.awakeFromNib()
self.wpImagV.layer.cornerRadius = 10
self.wpImagV.clipsToBounds = true
}
}