MachineViewController

This commit is contained in:
Eryn Wells 2015-07-20 21:12:16 -07:00
parent ff0cf30cc0
commit f461fbf237
2 changed files with 25 additions and 4 deletions

View file

@ -0,0 +1,21 @@
//
// MachineViewController.swift
// Enigma
//
// Created by Eryn Wells on 2015-07-18.
// Copyright © 2015 Eryn Wells. All rights reserved.
//
import UIKit
class MachineViewController: UIViewController, UITextFieldDelegate {
@IBOutlet weak var inputTextField: UITextField!
@IBOutlet weak var outputTextField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
}
// MARK: - UITextFieldDelegate
}