在接触Began方法中,我添加了 邮票刷图像到绘图中, 两者均为 UIImaageView
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
stampBrush = [[UIImageView alloc] initWithImage:[[PaintColor stampImages] objectAtIndex:[stamp_Default integerForKey:STAMP_TYPE]]];
[stampBrush setFrame:CGRectMake(lastPoint.x, lastPoint.y, stampBrush.image.size.width,stampBrush.image.size.height)];
[drawImage addSubview:stampBrush];
}
Now i am trying to remove one by one on removeStampBrush clicked! which stampBrush need to remove from drawImage!
-(void)removeStampBrush:(UIButton *)sender{
}