Files
lockdown-iOS-mirror/LockdowniOS/FeatureSetupCell.swift
2019-07-23 22:04:53 -04:00

25 lines
503 B
Swift

//
// FeatureSetupCell.swift
// Confirmed VPN
//
// Copyright © 2018 Confirmed Inc. All rights reserved.
//
import UIKit
class FeatureSetupCell: UITableViewCell {
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
}
@IBOutlet weak var setupButton: UIButton?
}