22 lines
407 B
Swift
22 lines
407 B
Swift
//
|
|
// NW_PGBannerCell.swift
|
|
// wallpaper_BProject
|
|
//
|
|
// Created by 忆海16 on 2024/8/29.
|
|
//
|
|
|
|
import UIKit
|
|
import FSPagerView
|
|
|
|
class NW_PGBannerCell: FSPagerViewCell {
|
|
@IBOutlet weak var ImageV: UIImageView!
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
ImageV.layer.cornerRadius = 5
|
|
self.layer.cornerRadius = 5
|
|
self.layer.masksToBounds = true
|
|
}
|
|
|
|
}
|