what\'s the easiest way to add the value of two textField to equal a sum to a label. Here are the text fields and label I am using:
textField
@IBOutlet we
If you have numbers on there use this:
if let num1 = Double(f1TextField.text!), let num2 = Double(f2TextField.text!) { speedLabel.text = "\(num1 + num2)" }