You've already forked My-Mind-2.0
mirror of
https://github.com/MrLyallCSIT/My-Mind-2.0.git
synced 2026-01-17 22:59:40 +00:00
36 lines
849 B
Swift
36 lines
849 B
Swift
//
|
|
// AppDelegate.swift
|
|
// SwiftForms
|
|
//
|
|
// Created by Miguel Angel Ortuno on 20/08/14.
|
|
// Copyright (c) 2014 Miguel Angel Ortuño. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
private func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : Any]?) -> Bool {
|
|
return true
|
|
}
|
|
|
|
func applicationWillResignActive(_ application: UIApplication) {
|
|
}
|
|
|
|
func applicationDidEnterBackground(_ application: UIApplication) {
|
|
}
|
|
|
|
func applicationWillEnterForeground(_ application: UIApplication) {
|
|
}
|
|
|
|
func applicationDidBecomeActive(_ application: UIApplication) {
|
|
}
|
|
|
|
func applicationWillTerminate(_ application: UIApplication) {
|
|
}
|
|
}
|
|
|