iOS-study
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

iOSFirstApp.swift 225B

1234567891011121314151617
  1. //
  2. // iOSFirstApp.swift
  3. // iOSFirst
  4. //
  5. // Created by 孙宇峰 on 2023/1/31.
  6. //
  7. import SwiftUI
  8. @main
  9. struct iOSFirstApp: App {
  10. var body: some Scene {
  11. WindowGroup {
  12. ContentView()
  13. }
  14. }
  15. }