younger_times
2023-07-18 a2589f9891509d85a873192d56e785885513e780
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  CourseExerciseTCell.swift
//  WanPai
//
//  Created by 无故事王国 on 2023/6/27.
//
 
import UIKit
import JQTools
 
class CourseExerciseTCell: UITableViewCell {
 
    override func awakeFromNib() {
        super.awakeFromNib()
        selectionStyle = .none
    }
 
    @IBAction func detailAction(_ sender: UIButton) {
        let vc = CourseVideoDetailVC(id: 0)
        vc.title = "课后练习"
        JQ_currentViewController().jq_push(vc: vc)
    }
}