25 lines
546 B
Swift
25 lines
546 B
Swift
//
|
|
// ViewController.swift
|
|
// ContainerControllerSwift
|
|
//
|
|
// Created by rustamburger@gmail.com on 06/09/2020.
|
|
// Copyright (c) 2020 rustamburger@gmail.com. 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.
|
|
}
|
|
|
|
}
|
|
|