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. }