在objective-c中声明变量是必要的

时间:2011-12-13 20:22:20

标签: objective-c xcode

在以下代码中:

       @interface UnitConverterViewController : UIViewController {
          UITextField     *tempText;
       }
       @property (strong, nonatomic) IBOutlet UILabel *resultLabel;
       @end

我看到了与

相同的结果
       {
          UITextField     *tempText;
       }

那么,这真的有必要吗?

1 个答案:

答案 0 :(得分:4)

Objective-c 2.0开始,没有必要。

请参阅:Do declared properties require a corresponding instance variable?