1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // CourseOnlineHeadView.swift
| // WanPai
| //
| // Created by 无故事王国 on 2023/6/15.
| //
|
| import UIKit
| import JQTools
|
| class CourseOnlineHeadView: UICollectionReusableView{
|
| var indexPath:IndexPath!
| var moreClouse:((IndexPath)->Void)!
|
| override func awakeFromNib() {
| super.awakeFromNib()
|
| }
|
| @IBAction func moreAction(_ sender: UIButton) {
| moreClouse(indexPath)
| }
| }
|
|