Files
Woka_Native_iOS/WOKA/SideBarNav/View/FaqCell.swift
BilalKhanWDI a5b33a3cfa - Fixed the issue of Presenting the view controller. So added it in navigation bar
- Handled the dismiss of jwplayer view controller
- Made sidebar navigation
- Worked on NAvigation for Live TV
- Prepared FAQ API
- Made FAQ View
- Customized the FAQ Cell
2024-06-03 20:02:39 +05:30

27 lines
503 B
Swift

//
// FaqCell.swift
// WOKA
//
// Created by MacBook Pro on 03/06/24.
//
import UIKit
class FaqCell: UITableViewCell {
@IBOutlet weak var question: UILabel!
@IBOutlet weak var answer: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}