ビューに 4 つのイメージ ビューがあります。 NSlogで確認しました。助けてください。
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:self.view];
if ([touch view] == textstyleImage) {
textstyleImage.center = location;
}
else if ([touch view] == clipartImage){
clipartImage.center = location;
}
else if([touch view] == customMessage){
customMessage.center = location;
}
else if([touch view] == galleryImage){
galleryImage.center = location;
}
}