ViewController.swift 723 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ViewController.swift
  3. // keychain
  4. //
  5. // Created by Evgenii Neumerzhitckii on 5/02/2015.
  6. // Copyright (c) 2015 The Exchange Group Pty Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class ViewController: UIViewController {
  10. @IBOutlet weak var textField: UITextField!
  11. @IBOutlet weak var valueLabel: UILabel!
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. // Do any additional setup after loading the view, typically from a nib.
  15. }
  16. override func didReceiveMemoryWarning() {
  17. super.didReceiveMemoryWarning()
  18. // Dispose of any resources that can be recreated.
  19. }
  20. @IBAction func onSaveTapped(sender: AnyObject) {
  21. }
  22. @IBAction func onDeleteTapped(sender: AnyObject) {
  23. }
  24. }