我對swift很陌生,有些東西我無法理解,它是關於類執行的。 我以爲類不能自己執行它們,你需要定義一個實例變量來處理類的方法和屬性,但我注意到在xcode文件中類沒有實例變量爲什麼?以及該類如何在沒有實例的情況下自行執行?如何在沒有實例的情況下在swift中執行類?
感謝推進
import UIKit
class ViewController: UIViewController {
var theView: UIView = UIView()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = UIColor.redColor()
}
}
/// Why i donl't need this line of code to worke with the class above
/// instead the class above execute itself without this instance
var theViewControllerInstance = ViewController()