Revision control

Copy as Markdown

//
// TermsAndConditionsTableViewCell.swift
// XRViewer
//
// Created by Roberto Garrido on 30/1/18.
// Copyright © 2018 Mozilla. All rights reserved.
//
import UIKit
class TermsAndConditionsTableViewCell: UITableViewCell {
@IBOutlet weak var labelTermsAndConditions: 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
}
}