i have 5 animating image in a image view and will like to allow user to tap on them base on the default ID and push it to another view. i tried to add in gesture tap but the
Really late but I've been facing the same issue and I found what I think is a better solution:
Just use the UIViewAnimationOptionAllowUserInteraction option like that:
[UIView animateWithDuration:4.0
delay:0
options:UIViewAnimationOptionAllowUserInteraction
animations:^{
imageViewTop.alpha = 0.0;
imageViewBottom.alpha = 1.0;
}
completion:^(BOOL completed){
[self nextAnimation:stringsize.width];
}
];