26 lines
494 B
Swift
26 lines
494 B
Swift
//
|
|
// ViewController.swift
|
|
// CapCollector
|
|
//
|
|
// Created by User on 05.05.18.
|
|
// Copyright © 2018 CH. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
}
|
|
|