Skip to content

Instantly share code, notes, and snippets.

@litoarias
Last active June 15, 2018 16:29
Show Gist options
  • Save litoarias/f7554bf4afc42cdb33f9fab6ff68343f to your computer and use it in GitHub Desktop.
Save litoarias/f7554bf4afc42cdb33f9fab6ff68343f to your computer and use it in GitHub Desktop.
Watch Tutorial - 7
import UIKit
// 1: Import Framework
import WatchConnectivity
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
if !SessionHandler.shared.isSuported() {
print("WCSession not supported (f.e. on iPad).")
}
return true
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment