import UIKit
class ViewController: UIViewController {
@IBOutlet weak var fahrenheitTextField: UITextField!
@IBOutlet weak var celsiusLabel: UILabel!
@IBOutlet weak var fahrenheitLabel: UILabel!
@IBOutlet weak var celsiusTextField: UITextField!
}
@IBAction func convertToFahrenheit(_ sender: UIButton) {
// Conversion logic will go here
}
@IBAction func convertToFahrenheit(_ sender: UIButton) {
guard let fahrenheit = Double(fahrenheitTextField.text!) else { return }
let celsius = (fahrenheit - 32) * 5/9
celsiusLabel.text = "\(celsius)"
}
guard let fahrenheit = Double(fahrenheitTextField.text!) else { return }
let celsius = (fahrenheit - 32) * 5/9
celsiusLabel.text = "\(celsius)"
@IBAction func convertToFahrenheit(_ sender: UIButton) {
guard let fahrenheit = Double(fahrenheitTextField.text!) else { return }
let celsius = (fahrenheit - 32) * 5/9
celsiusLabel.text = "\(celsius)"
}