-1

I have links to images which I turned to comments underneath the last }. Using Xcode7, ALL my code is:

import UIKit

class ViewController: UIViewController {
  override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
  }
  override func viewDidLoad() {
    super.viewDidload()
  }
}

Error: Value of type
UIViewController has no member viewDidload

I've searched for a solution with no result, Please help!

l'L'l
  • 44,951
  • 10
  • 95
  • 146

1 Answers1

1

The error message is correct:

super.viewDidload()

is a non-existent function, however, changing it to:

super.viewDidLoad()

Should then be recognized; the upper/lowercase of each word in the function is important.

l'L'l
  • 44,951
  • 10
  • 95
  • 146