Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
436 B
19 lines
436 B
// |
|
// AppDelegate.swift |
|
// |
|
// Created by Giles Payne on 2020/03/02. |
|
// |
|
|
|
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 |
|
} |
|
|
|
}
|
|
|