mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-25 12:13:52 +01:00
34 lines
689 B
Swift
34 lines
689 B
Swift
//
|
|
// AddWidgetViewController.swift
|
|
// Tunnels
|
|
//
|
|
// Copyright © 2018 Confirmed, Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class AddWidgetViewController: ConfirmedBaseViewController {
|
|
|
|
|
|
//MARK: - OVERRIDE
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
}
|
|
|
|
|
|
//MARK: - ACTION
|
|
@IBAction func dismissWidgetInstructions (sender: UIButton) {
|
|
self.dismiss(animated: true, completion: nil)
|
|
}
|
|
|
|
//MARK: - VARIABLES
|
|
@IBOutlet var numberOne: UILabel?
|
|
@IBOutlet var numberTwo: UILabel?
|
|
@IBOutlet var numberThree: UILabel?
|
|
|
|
}
|