【Swift】[super.xxxxx]とは
解説
1 2 3 4 5 6 7 8 9 10 11 |
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } } |
親クラス(スーパークラス)のメソッドを呼び出している。