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

时间:2015-08-03 06:25:36

标签: ios swift uilabel

我已经在swift中以编程方式创建了var sql = 'SELECT DPHID FROM DPH'; var sqlParam = []; db.transaction( function queryDB(tx) { tx.executeSql(sql, sqlParam, function querySuccess(tx, results) { console.log(JSON.stringify(results.rows)); ... call other function ... } , error); } , error); function error(tx, err) { console.log("Error"); console.log(JSON.stringify(tx)); console.log(JSON.stringify(err)); } ,但它给了我以下错误:

  

Class'ViewController'没有初始值设定项

enter image description here

代码:

UILabel

1 个答案:

答案 0 :(得分:9)

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