简单的问题,因为我是 IOS 新手。
声明变量/字段等的位置有什么区别?
选项 1(头文件)
@interface ViewController : UIViewController {
UIView *testView;
}
选项 2(头文件)
@interface ViewController : UIViewController
@property UIView *testView;
选项 3(实现文件)
@implementation ViewController {
UIView *testView;
}
@end