SwiftSocket/iOS Example/AppDelegate.swift
2016-11-16 15:56:34 +03:00

23 lines
422 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: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
return true
}
}