SwiftSocket/iOS Example/AppDelegate.swift
2019-04-24 11:50:57 +02:00

22 lines
423 B
Swift

//
// AppDelegate.swift
// iOS Example
//
// Created by Dan Shevlyuk on 11/16/16.
// Copyright © 2016 swift. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
return true
}
}