25 lines
532 B
Swift
25 lines
532 B
Swift
//
|
||
// ViewController.swift
|
||
// iOS-Base-Library
|
||
//
|
||
// Created by Николай Ашанин on 23.01.16.
|
||
// Copyright © 2016 Touch Instinct. 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.
|
||
}
|
||
|
||
|
||
}
|