PyLeap-iOS/PyLeap/AppDelegate.swift
TrevKnows 0433aaf55e BUG FIX - Third-party projects are duplicated
BUG - Third-party projects are duplicated when appended to the project list.
2023-01-12 16:54:19 -05:00

24 lines
563 B
Swift

//
// AppDelegate.swift
// Glider
//
// Created by Antonio García on 14/5/21.
//
import UIKit
class AppDelegate: NSObject, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
// UI
setupAppearances()
return true
}
private func setupAppearances() {
// Alerts
UIView.appearance(whenContainedInInstancesOf: [UIAlertController.self]).tintColor = .blue
}
}