使用正确的 MCV 和 Objective-C 可以 UIView 子类有@propertys吗?
即在.h文件中
@class MyViewSubclass;
@interface MyViewSubclass : UIView
@property (strong, nonatomic) UILabel *labelLabel;
@property (strong, nonatomic) UILabel *valueLabel;
@end
还是应该在 UIViewController 子类中完成?
提前致谢。