- 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
27 lines
503 B
Swift
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
|
|
}
|
|
|
|
}
|