First commit - d6b8eb1c9739f5936d328605e8afa7698140d34b
-
Create a new project called Temperatures. Set the prefix to
TM. -
Open
TMViewController.xiband drag in 1. A UITextField 2. 2 UIButton's. The buttons should have the textF to CandC to Frespectively. -
Create 3 properties in
TMViewController.hlike so:@property (weak, nonatomic) IBOutlet UITextField *temperatureTextField; @property (weak, nonatomic) IBOutlet UIButton *farenheightButton; @property (weak, nonatomic) IBOutlet UIButton *celsiusButton; -
Connect those IBOutlets to their respective buttons in
TMViewController.xib.