「親の子タッチイベントセット画像ファイル」をカバーします(タッチは画面全体になります)
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
NSUInteger tapCount = [touch tapCount];
switch (tapCount) {
case 1:
[self performSelector:@selector(parent) withObject:nil afterDelay:0];
break;
case 2:
break;
default:
break;
}
- (void)parent
{
UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"parent" ofType:@"png"]];
[parent setImage:img];
}
}
UIImageViewsが同じビューにある限り、サワーキャンディーのように元気でダンディである必要があります
または、子の画像ビューをタッチした場合に必要な場合は、UIButtonを追加し、子の上にドラッグして、カスタムボタンとして設定し(非表示にします)、-(void)parentを-(IBAction)に設定します。親とそれを.hに追加します