在我的应用程序中,我想与NSMutableDictionary
所有UIElements
(UIButton
、、UILable
等)相关联,我可以通过对每个元素进行子类化来轻松实现这一点,但我只想知道我是否可以创建自己的UIControl
子类 - 具有类型的属性NSMutableDictionary
- 作为所有元素的超类无论如何以编程方式创建UIElement
s,这样我就可以减少子类的数量。
这里像这样
@interface UIControl : MyControls
{
}
@property(nonatomic,retain) NSMutableDictionary *details;
@end
并MyControls
作为所有以编程方式创建的 UIElements 的超类