在以下代码中:
@interface UnitConverterViewController : UIViewController {
UITextField *tempText;
}
@property (strong, nonatomic) IBOutlet UILabel *resultLabel;
@end
我看到了与
相同的结果 {
UITextField *tempText;
}
那么,这真的有必要吗?
答案 0 :(得分:4)
从Objective-c 2.0
开始,没有必要。
请参阅:Do declared properties require a corresponding instance variable?