In the following code:
       @interface UnitConverterViewController : UIViewController {
          UITextField     *tempText;
       }
       @property (strong, nonatomic) IBOutlet UILabel *resultLabel;
       @end
I've seen the same result achieved with out having
       {
          UITextField     *tempText;
       }
So, is this really necessary?
 
     
    