Files
ZipArchive/Example/SwiftExample/AppDelegate.swift
T

22 lines
453 B
Swift

//
// AppDelegate.swift
// SwiftExample
//
// Created by Sean Soper on 10/23/15.
//
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
}