1电商系统iOS-初始化项目

1. 当前的软硬件

  • Macbook Air
  • iPhone12手机一枚
  • macOS 12.6
  • Xcode 14.0
  • Swift(编程语言)
  • 纯代码

2. 初始化项目

截屏2022-10-07 10.32.34.png

3. 删除Storyboard

截屏2022-10-07 10.58.36.png

4. 重写AppDelegate方法

//
//  AppDelegate.swift
//  cyshop
//
//  Created by duan on 2022/9/25.
//

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.
        window = UIWindow(frame: UIScreen.main.bounds)
        window?.backgroundColor = .white
        let vc = ViewController()
        window?.rootViewController = vc
        window?.makeKeyAndVisible()
        return true
    }
    
    //下面两行方法全部删除
    
}

4. 启动完成

截屏2022-10-07 11.03.08.png

5. git代码分享

https://gitee.com/benovel/cyshop/tree/1%E7%94%B5%E5%95%86%E7%B3%BB%E7%BB%9FiOS-%E5%88%9D%E5%A7%8B%E5%8C%96%E9%A1%B9%E7%9B%AE/

你可能感兴趣的:(1电商系统iOS-初始化项目)