i have a problem on Xcode7 i want to add some numbers from a text box with an integer i already have but this code seems not to be working:
@IBAction func ConvertAction(sender: AnyObject) {
    //get the user input
     let Celcius:String? = Textinput.text
    //here
    //here is the problem
    // convert celcius to fahrenheit
    let fahrenheit:Int = ( Celcius + 160 )
//this gives me an error saying "Binary operator "+" cannot be applied to operands of type string? and Int"
    //print on label the farenheit
    Labeloutput.text = "\(Celsius) Celcius is /(fahrenheit) Fahrenheit"
}
 
    