如何解决这个错误? - Class 'ViewController' 没有初始值设定项

How to resolve this error? - Class 'ViewController' has no initializers

我已经在 swift 中以编程方式创建了 UILabel,但它给了我以下错误:

Class 'ViewController' has no initializers

代码:

class ViewController: UIViewController {

    let lbl_LastName: UILabel!

    override func viewDidLoad() {
        super.viewDidLoad()
        lbl_LastName.frame = CGRectMake(10, 230, 300, 21)
        self.view.addSubview(lbl_LastName)   
    }
}

let lbl_LastName: UILabel!更改为var lbl_LastName: UILabel!