Files
test_ios/My First IOS app/ViewController.swift
2018-06-27 01:30:47 -07:00

26 lines
504 B
Swift

//
// ViewController.swift
// My First IOS app
//
// Created by h_mal on 27/06/2018.
// Copyright © 2018 h_mal. 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.
}
}