//
|
// EmptyCCell.swift
|
// XQMuse
|
//
|
// Created by 无故事王国 on 2024/8/20.
|
//
|
|
import UIKit
|
import JQTools
|
|
class EmptyCCell: UICollectionViewCell,JQNibView{
|
|
@IBOutlet weak var label_hint: UILabel!
|
@IBOutlet weak var btn_call: UIButton!
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
// Initialization code
|
}
|
|
@IBAction func needPaymentCourseAction(_ sender: UIButton) {
|
JQ_currentNavigationController().popToRootViewController(animated: true)
|
DispatchQueue.main.asyncAfter(delay: 0.5) {
|
JQ_currentViewController().tabBarController?.selectedIndex = 1
|
NotificationCenter.default.post(name: CourseOfficalComment_Noti, object: nil, userInfo: nil)
|
}
|
}
|
}
|