mirror of
https://github.com/hmalik144/Book_lib_iOS.git
synced 2025-12-10 02:35:21 +00:00
26 lines
497 B
Swift
26 lines
497 B
Swift
//
|
|
// ViewController.swift
|
|
// Books_App
|
|
//
|
|
// Created by h_mal on 09/07/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.
|
|
}
|
|
|
|
|
|
}
|
|
|