I have a table:
let CTCSStable:[String] = [ "67.0 ", "69.3 ", "71.9 "]
I need to convert a selected entry to be a string equal to ten times the numeric value of the entry.
var tempCTCSS:String = self.CTCSStable[ctcssIndex]
let tempCTCSSF:Float = Float(tempCTCSS)!
This throws an exception:
fatal error: unexpectedly found nil while unwrapping an Optional value