UIImageView の配列があります。現在、配列に 5 つの UIImageView があるとします。現在触れている UIImageView を知るにはどうすればよいですか?
ありがとう。
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
if ([touch view] == ??)
{
}
}