iOS-study
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

iOSFirstApp.swift 759B

1 år sedan
1 år sedan
1 år sedan
1 år sedan
1 år sedan
123456789101112131415161718192021222324252627282930
  1. //
  2. // iOSFirstApp.swift
  3. // iOSFirst
  4. //
  5. // Created by 孙宇峰 on 2023/1/31.
  6. //
  7. import SwiftUI
  8. class AppDelegate: NSObject, UIApplicationDelegate {
  9. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
  10. Thread.sleep(forTimeInterval: 1.5)
  11. return true
  12. }
  13. func applicationDidReceiveMemoryWarning(_ application: UIApplication) {
  14. print("log-DidReceiveMemoryWarning")
  15. }
  16. }
  17. @main
  18. struct iOSFirstApp: App {
  19. @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
  20. var body: some Scene {
  21. WindowGroup {
  22. LoginView()
  23. SUIToastViewContainer(stackOverlap: .overlap)
  24. }
  25. }
  26. }