You've already forked FinalYearProject-MyMind
mirror of
https://github.com/MrLyallCSIT/FinalYearProject-MyMind.git
synced 2026-01-17 22:59:41 +00:00
24 lines
547 B
Swift
24 lines
547 B
Swift
//
|
|
// ViewController.swift
|
|
// SwiftFormsApplication
|
|
//
|
|
// Created by Miguel Angel Ortuno Ortuno on 14/5/15.
|
|
// Copyright (c) 2015 Miguel Angel Ortuno Ortuno. 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.
|
|
}
|
|
}
|
|
|