12345678910111213141516171819202122 |
- //
- // AppDelegate.swift
- // BodyfatScaleDemo_swift
- //
- // Created by steven wu on 2021/3/16.
- //
-
- import UIKit
-
- @main
- 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
- }
-
-
- }
|