I have written some code in Xcode and the error is on the last line. Can someone help me convert the string to an integer?
@IBAction func btnCalc(_ sender: Any) {
let numb1 = Int(txtN1.text!)
let numb2 = Int(txtN2.text!)
let calcResult = (numb1)! + (numb2)!
labelResult.text = (calcResult)
}