在Objective-C中使用正確的MCV可以讓UIView子類擁有@propertys?應該UIViews有屬性?
即在.h文件
@class MyViewSubclass;
@interface MyViewSubclass : UIView
@property (strong, nonatomic) UILabel *labelLabel;
@property (strong, nonatomic) UILabel *valueLabel;
@end
或本應在UIViewController子類來完成?
在此先感謝。