在Objective-C中使用UITouchEvent填充颜色,可以通过以下步骤实现:
@interface CustomView : UIView
@property (nonatomic, strong) UIColor *fillColor;
@end
touchesBegan:withEvent:
方法和drawRect:
方法。@implementation CustomView
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
// 获取触摸点
UITouch *touch = [touches anyObject];
CGPoint touchPoint = [touch locationInView:self];
// 设置填充颜色
self.fillColor = [UIColor redColor];
// 重新绘制视图
[self setNeedsDisplay];
}
- (void)drawRect:(CGRect)rect {
// 获取绘图上下文
CGContextRef context = UIGraphicsGetCurrentContext();
// 设置填充颜色
[self.fillColor setFill];
// 绘制填充矩形
CGContextFillRect(context, rect);
}
@end
CustomView *customView = [[CustomView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
[self.view addSubview:customView];
当用户在CustomView上进行触摸操作时,touchesBegan:withEvent:
方法会被调用,设置填充颜色后,通过调用setNeedsDisplay
方法触发视图的重新绘制,最终在drawRect:
方法中绘制填充矩形并显示填充颜色。
推荐的腾讯云相关产品:无
请注意,以上代码仅为示例,实际使用时需要根据具体需求进行适当修改和完善。
领取专属 10元无门槛券
手把手带您无忧上云