//
|
// 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)
|
}
|
}
|