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.

AppDelegate.swift 449B

12345678910111213141516171819202122
  1. //
  2. // AppDelegate.swift
  3. // BodyfatScaleDemo_swift
  4. //
  5. // Created by steven wu on 2021/3/16.
  6. //
  7. import UIKit
  8. @main
  9. class AppDelegate: UIResponder, UIApplicationDelegate {
  10. var window: UIWindow?
  11. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  12. // Override point for customization after application launch.
  13. return true
  14. }
  15. }