WallPaperHome722/WallpaperHD_Live/Ranking/V/WP_RankingCell.swift
2024-07-22 16:38:54 +08:00

22 lines
396 B
Swift

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