2016-05-21 41 views
-1

我有鏈接到圖像,我轉向最後}下面的評論。使用Xcode7,我所有的代碼是:xcode7'UIViewController'has no member'viewDidLoad'

import UIKit 

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

Error: Value of type
UIViewController has no member viewDidload

我搜索過,沒有結果的解決方案,請幫幫忙!

回答

1

該錯誤消息是正確的:

super.viewDidload() 

是不存在的功能,但是,它改變爲:

super.viewDidLoad() 
然後

應該承認;函數中每個單詞的大寫/小寫都是重要的