Using Xcode (Swift) - and Id like to convert Celsius to Fahrenheit. A simple enter a value, press enter, get result
This project continues building on what you started in HW 5. So far we have inserted widgets and used IBAction or IBOutlet’s to send or receive info from Label, TextField, Slider etc. For the final project for this course, you will write code to interact between couple of widgets. For this project build an app that converts information from one form to another. As an example, you can take temperature in Centigrade and convert to Fahrenheit. You can convert currency from US Dollars to EU Euros, and so on. Conversion can be within same unit space too. For e.g. recipes have conversion too. You can tell how many cookies you would like to bake and based on that number you can convert how much ingredients will be needed. For this project pick a unit you would like to convert. Next you need to decide how you would seek input from the use on value of the unit to convert (for e.g. temp in Centigrade). You can use TextField or Slider to seek input. From previous homework exercises you know how to get input. Next you need to convert the value you read. You can insert a Button called “Convert”. When user hits this button you need to do conversion and display the converted value. You can use Label, or Slider to show the converted value.