In Xcode, Mac templates default to including a “main.swift” file, but for iOS apps the default for new iOS project templates is to add @UIApplicationMain to a regular Swift file. This causes the compiler to synthesize a mainentry point for your iOS app, and eliminates the need for a “main.swift” file.
一》 swift在main.swift里面没有了main函数。
在创建IOS项目的时候@UIApplicationMain 来启动程序。如果删除@UIApplicationMain这行,我们需要创建一个main.swift文件
import UIKit
UIApplicationMain(Process.argc,Process.unsafeArgv,nil,NSStringFromClass(AppDelegate))
现在编译运行,就不会再出现错误了。当然,我们还可以通过将第三个参数替换成自己的UIApplication子类,这样我们就可以轻易地做一些控制整个应用行为的事情了。比如将main.swift的内容换成:
可以监听event事件。
二》变量常量 元祖 和 注释比较
playGround是xcode增加的一个学习swift的一个工具可以观察数值变化。
playGround显示Console OutPut View-Assistant Editor-Assitant Show Editor-Assitant 来显示