touchesBegan メソッドで、両方が UIImageView である drawImage に stampBrush Image を追加しました
- (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];
}
今、removeStampBrushをクリックして1つずつ削除しようとしています! drawImage からどのスタンプブラシを削除する必要がありますか!
-(void)removeStampBrush:(UIButton *)sender{
}