1. main.m 程序启动类,里面有一个程序入口函数:main函数

  2. Prefix.pch
    代码共用,其他类导入共享代码,没有需要自己建
    如果定义的内容只用在OC环境中,就必须定义如下:

    1
    2
    3
    #ifdef __OBJC__
    //代码块
    #endif
  3. Info.plist 项目配置文件
    Bundle display name : app名称
    Bundle identifier : app唯一标识
    Bundle versions string, short : 软件版本号(发布新版app用)
    Main storyboard file base name : 设置程序一启动就加载的storyboard文件

  4. InfoPlist.strings 字符串资源文件,app国际化(多语言版本),没有需要自己建

  5. Main.Storyboard 主界面
    LaunchScreen.storyboard 启动界面

文章目录