rename CoreStoreDemo to LegacyDemo

This commit is contained in:
John Estropia
2020-09-19 14:32:43 +09:00
parent 98a42feb95
commit 228e4e8e1a
69 changed files with 96 additions and 368 deletions
+26
View File
@@ -0,0 +1,26 @@
//
// AppDelegate.swift
// LegacyDemo
//
// Created by John Rommel Estropia on 2015/05/02.
// Copyright © 2018 John Rommel Estropia. All rights reserved.
//
import UIKit
// MARK: - AppDelegate
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
// MARK: UIApplicationDelegate
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
return true
}
}