杨锴
2025-05-11 7453d2d0cef415b34323d1b91e6cfa4a6ba31178
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  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)
    }
}