//
|
// CourseOnlineHeadView.swift
|
// WanPai
|
//
|
// Created by 无故事王国 on 2023/6/15.
|
//
|
|
import UIKit
|
import JQTools
|
|
class CourseOnlineHeadView: UICollectionReusableView{
|
|
@IBOutlet weak var label_name: UILabel!
|
|
var indexPath:IndexPath!
|
var moreClouse:((IndexPath)->Void)!
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
|
}
|
|
@IBAction func moreAction(_ sender: UIButton) {
|
moreClouse(indexPath)
|
}
|
}
|