标签:
// 1. 程序创建UI控件时常常会调用该方法执行初始化。 因此,如果你需要对UI控件执行一些额外的初始化,即可通过重写该方法来实现。
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
}
return self;
}
//2. 程序通过nib文件中加载完该控件后会自动调用该方法。因此,如果程序需要在nib文件中加载该控件后执行自定义初始化,即可通过重写该方法米来实现。
- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
}
return self;
}
//3. 如果程序需要自行绘制该控件的内容,则可通过重写该方法来实现。
- (void)drawRect:(CGRect)rect
{
}
//4. 如果程序需要对该控件所包含的子控件布局进行更精确的控制,可通过重写该方法实现。
- (void)layoutSubviews
{
[super layoutSubviews];
}
//5. 该控件添加子控件完成时,将会激发该方法。
- (void)didAddSubview:(UIView *)subview
{
[super didAddSubview:subview];
}
// 6. 当该控件将要删除子控件时,将会激发该方法。
- (void)willRemoveSubview:(UIView *)subview
{
[super willRemoveSubview:subview];
}
//7. 当把该控件添加到父控件完成时,将会激发该方法。
- (void)didMoveToSuperview
{
[super didMoveToSuperview];
}
// 8. 当把该控件添加到窗口完成时,将会激发该方法。
- (void)didMoveToWindow
{
[super didMoveToWindow];
}
//9. 当用户手指开始触碰该控件时,,将会激发该方法。
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
}
//10. 当用户手指在该控件上移动时,将会激发该方法。
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
}
//11. 当用户手指结束在该控件上移动时,将会激发该控件。
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
}
//12. 用户取消触碰该控件时,将会激发该控件。
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
}
标签:
原文地址:http://www.cnblogs.com/iCodePhone/p/4353416.html